mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
575 B
33 lines
575 B
syntax = "proto3"; |
|
|
|
package v2ray.core.app.reverse; |
|
option csharp_namespace = "V2Ray.Core.Proxy.Reverse"; |
|
option go_package = "reverse"; |
|
option java_package = "com.v2ray.core.proxy.reverse"; |
|
option java_multiple_files = true; |
|
|
|
message Control { |
|
enum State { |
|
ACTIVE = 0; |
|
DRAIN = 1; |
|
} |
|
|
|
State state = 1; |
|
bytes random = 99; |
|
} |
|
|
|
message BridgeConfig { |
|
string tag = 1; |
|
string domain = 2; |
|
|
|
} |
|
|
|
message PortalConfig { |
|
string tag = 1; |
|
string domain = 2; |
|
} |
|
|
|
message Config { |
|
repeated BridgeConfig bridge_config = 1; |
|
repeated PortalConfig portal_config = 2; |
|
}
|
|
|