mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
a109389efb
* 增加 wireguard 出站选项 `resolveStrategy`. * They become a part of you. * 移除不必要的选项别名. * aliases NG. * 微调. --------- Co-authored-by: rui0572 <125641819+rui0572@users.noreply.github.com>
32 lines
799 B
Protocol Buffer
32 lines
799 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.proxy.wireguard;
|
|
option csharp_namespace = "Xray.Proxy.WireGuard";
|
|
option go_package = "github.com/xtls/xray-core/proxy/wireguard";
|
|
option java_package = "com.xray.proxy.wireguard";
|
|
option java_multiple_files = true;
|
|
|
|
message PeerConfig {
|
|
string public_key = 1;
|
|
string pre_shared_key = 2;
|
|
string endpoint = 3;
|
|
int32 keep_alive = 4;
|
|
repeated string allowed_ips = 5;
|
|
}
|
|
|
|
message DeviceConfig {
|
|
enum DomainStrategy {
|
|
FORCE_IP = 0;
|
|
FORCE_IP4 = 1;
|
|
FORCE_IP6 = 2;
|
|
FORCE_IP46 = 3;
|
|
FORCE_IP64 = 4;
|
|
}
|
|
string secret_key = 1;
|
|
repeated string endpoint = 2;
|
|
repeated PeerConfig peers = 3;
|
|
int32 mtu = 4;
|
|
int32 num_workers = 5;
|
|
bytes reserved = 6;
|
|
DomainStrategy domain_strategy = 7;
|
|
} |