mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-21 16:47:01 +00:00
https://github.com/XTLS/Xray-core/issues/6567#issuecomment-5660953757 https://github.com/XTLS/Xray-core/pull/6771#issuecomment-5751826982 https://github.com/XTLS/Xray-core/pull/6771#issuecomment-5751831637
30 lines
728 B
Protocol Buffer
30 lines
728 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;
|
|
|
|
import "common/protocol/user.proto";
|
|
|
|
message PeerConfig {
|
|
string public_key = 1;
|
|
string pre_shared_key = 2;
|
|
string endpoint = 3;
|
|
string keep_alive = 4;
|
|
repeated string allowed_ips = 5;
|
|
}
|
|
|
|
message DeviceConfig {
|
|
string secret_key = 1;
|
|
repeated string endpoint = 2;
|
|
repeated PeerConfig peers = 3;
|
|
repeated xray.common.protocol.User users = 5;
|
|
int32 mtu = 4;
|
|
|
|
bytes reserved = 6;
|
|
bool is_client = 8;
|
|
bool no_kernel_tun = 9;
|
|
repeated string DNS = 10;
|
|
} |