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

31 lines
677 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-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";
option java_outer_classname = "ConfigProto";
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;
uint32 timeout = 5;
}
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;
2016-09-25 16:54:18 -04:00
}