| 123456789101112131415161718192021222324252627282930313233343536 |
- syntax = "proto3";
- package v2ray.core.proxy.shadowsocks;
- option csharp_namespace = "V2Ray.Core.Proxy.Shadowsocks";
- option go_package = "github.com/v2fly/v2ray-core/v4/proxy/shadowsocks";
- option java_package = "com.v2ray.core.proxy.shadowsocks";
- option java_multiple_files = true;
- import "common/net/network.proto";
- import "common/protocol/user.proto";
- import "common/protocol/server_spec.proto";
- message Account {
- string password = 1;
- CipherType cipher_type = 2;
- }
- enum CipherType {
- UNKNOWN = 0;
- AES_128_GCM = 1;
- AES_256_GCM = 2;
- CHACHA20_POLY1305 = 3;
- NONE = 4;
- }
- message ServerConfig {
- // UdpEnabled specified whether or not to enable UDP for Shadowsocks.
- // Deprecated. Use 'network' field.
- bool udp_enabled = 1 [deprecated = true];
- v2ray.core.common.protocol.User user = 2;
- repeated v2ray.core.common.net.Network network = 3;
- }
- message ClientConfig {
- repeated v2ray.core.common.protocol.ServerEndpoint server = 1;
- }
|