1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 05:44:28 -04:00
v2fly/proxy/shadowsocks/config.proto

42 lines
1.1 KiB
Protocol Buffer
Raw Normal View History

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