mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 18:06:15 -05:00
32 lines
816 B
Protocol Buffer
32 lines
816 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.transport.internet;
|
|
option go_package = "internet";
|
|
option java_package = "com.v2ray.core.transport.internet";
|
|
|
|
import "v2ray.com/core/common/net/network.proto";
|
|
import "v2ray.com/core/common/loader/type.proto";
|
|
|
|
message NetworkSettings {
|
|
// Type of network that this settings supports.
|
|
v2ray.core.common.net.Network network = 1;
|
|
|
|
// Specific settings.
|
|
v2ray.core.common.loader.TypedSettings settings = 2;
|
|
}
|
|
|
|
message StreamConfig {
|
|
// Effective network.
|
|
v2ray.core.common.net.Network network = 1;
|
|
|
|
repeated NetworkSettings network_settings = 2;
|
|
|
|
// Type of security. Must be a message name of the settings proto.
|
|
string security_type = 3;
|
|
|
|
repeated v2ray.core.common.loader.TypedSettings security_settings = 4;
|
|
}
|
|
|
|
message ProxyConfig {
|
|
string tag = 1;
|
|
} |