mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
7086d286be
* Add feature migration notice * Remove legacy code of transport processing * Clear legacy proto field * Fix missing * Unify protocolname * Test remove * Supressor * Weird code * Remove errorgen related comments
19 lines
391 B
Protocol Buffer
19 lines
391 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.common.net;
|
|
option csharp_namespace = "Xray.Common.Net";
|
|
option go_package = "github.com/xtls/xray-core/common/net";
|
|
option java_package = "com.xray.common.net";
|
|
option java_multiple_files = true;
|
|
|
|
enum Network {
|
|
Unknown = 0;
|
|
|
|
TCP = 2;
|
|
UDP = 3;
|
|
UNIX = 4;
|
|
}
|
|
|
|
// NetworkList is a list of Networks.
|
|
message NetworkList { repeated Network network = 1; }
|