1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 04:34:15 -04:00
v2fly/proxy/socks/config.proto

34 lines
765 B
Protocol Buffer
Raw Normal View History

2016-08-28 17:41:45 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.proxy.socks;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.Proxy.Socks";
2016-08-28 17:41:45 -04:00
option go_package = "socks";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.proxy.socks";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-08-28 17:41:45 -04:00
import "v2ray.com/core/common/net/address.proto";
2016-09-25 16:54:18 -04:00
import "v2ray.com/core/common/protocol/server_spec.proto";
message Account {
string username = 1;
string password = 2;
}
enum AuthType {
NO_AUTH = 0;
PASSWORD = 1;
}
2016-08-28 17:41:45 -04:00
message ServerConfig {
AuthType auth_type = 1;
map<string, string> accounts = 2;
2016-10-12 12:43:55 -04:00
v2ray.core.common.net.IPOrDomain address = 3;
2016-08-28 17:41:45 -04:00
bool udp_enabled = 4;
2017-11-27 16:09:30 -05:00
uint32 timeout = 5 [deprecated = true];
uint32 user_level = 6;
2016-08-28 17:41:45 -04:00
}
2016-09-25 16:54:18 -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
}