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.
v2ray-core/transport/internet/config.proto

33 lines
882 B

syntax = "proto3";
package v2ray.core.transport.internet;
option csharp_namespace = "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/serial/typed_message.proto";
message NetworkSettings {
8 years ago
// Type of network that this settings supports.
v2ray.core.common.net.Network network = 1;
8 years ago
// Specific settings.
v2ray.core.common.serial.TypedMessage settings = 2;
}
message StreamConfig {
8 years ago
// Effective network.
v2ray.core.common.net.Network network = 1;
8 years ago
repeated NetworkSettings network_settings = 2;
8 years ago
// Type of security. Must be a message name of the settings proto.
string security_type = 3;
8 years ago
repeated v2ray.core.common.serial.TypedMessage security_settings = 4;
}
message ProxyConfig {
string tag = 1;
}