1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/shadowsocks/config.proto

41 lines
1011 B
Protocol Buffer
Raw Normal View History

2016-09-18 00:41:21 +02:00
syntax = "proto3";
2016-09-26 15:14:16 +02:00
package v2ray.core.proxy.shadowsocks;
2016-12-23 00:24:28 +01:00
option csharp_namespace = "V2Ray.Core.Proxy.Shadowsocks";
option go_package = "v2ray.com/core/proxy/shadowsocks";
2016-09-26 15:14:16 +02:00
option java_package = "com.v2ray.core.proxy.shadowsocks";
2017-02-03 23:15:10 +01:00
option java_multiple_files = true;
2016-09-18 00:41:21 +02:00
import "common/net/network.proto";
import "common/protocol/user.proto";
import "common/protocol/server_spec.proto";
2016-09-25 22:07:32 +02:00
2016-09-18 00:41:21 +02:00
message Account {
string password = 1;
2016-09-25 22:07:32 +02:00
CipherType cipher_type = 2;
}
enum CipherType {
UNKNOWN = 0;
AES_128_CFB = 1;
AES_256_CFB = 2;
CHACHA20 = 3;
2017-01-03 01:37:27 +01:00
CHACHA20_IETF = 4;
2017-04-05 22:55:26 +02:00
AES_128_GCM = 5;
AES_256_GCM = 6;
CHACHA20_POLY1305 = 7;
2017-11-29 22:19:04 +01:00
NONE = 8;
2016-09-25 22:07:32 +02:00
}
message ServerConfig {
2018-04-03 17:51:01 +02:00
// UdpEnabled specified whether or not to enable UDP for Shadowsocks.
// Deprecated. Use 'network' field.
bool udp_enabled = 1 [deprecated = true];
2016-09-26 15:14:16 +02:00
v2ray.core.common.protocol.User user = 2;
2018-04-03 17:51:01 +02:00
repeated v2ray.core.common.net.Network network = 3;
2016-09-18 00:41:21 +02:00
}
2016-09-25 22:07:32 +02:00
message ClientConfig {
2016-10-12 18:43:55 +02:00
repeated v2ray.core.common.protocol.ServerEndpoint server = 1;
2017-11-27 22:09:30 +01:00
}