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";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/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
|
|
|
|
2020-08-24 08:10:26 -04:00
|
|
|
import "common/net/address.proto";
|
2021-12-11 18:05:40 -05:00
|
|
|
import "common/net/packetaddr/config.proto";
|
2020-08-24 08:10:26 -04:00
|
|
|
import "common/protocol/server_spec.proto";
|
2016-09-25 16:54:18 -04:00
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// Account represents a Socks account.
|
2016-09-25 16:54:18 -04:00
|
|
|
message Account {
|
|
|
|
string username = 1;
|
|
|
|
string password = 2;
|
|
|
|
}
|
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// AuthType is the authentication type of Socks proxy.
|
2016-09-25 16:54:18 -04:00
|
|
|
enum AuthType {
|
2021-12-26 23:33:08 -05:00
|
|
|
// NO_AUTH is for anonymous authentication.
|
2016-09-25 16:54:18 -04:00
|
|
|
NO_AUTH = 0;
|
2018-10-18 03:25:58 -04:00
|
|
|
// PASSWORD is for username/password authentication.
|
2016-09-25 16:54:18 -04:00
|
|
|
PASSWORD = 1;
|
|
|
|
}
|
2016-08-28 17:41:45 -04:00
|
|
|
|
2021-09-16 02:42:12 -04:00
|
|
|
enum Version {
|
|
|
|
SOCKS5 = 0;
|
|
|
|
SOCKS4 = 1;
|
|
|
|
SOCKS4A = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// ServerConfig is the protobuf config for Socks server.
|
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;
|
2021-12-11 18:05:40 -05:00
|
|
|
|
|
|
|
v2ray.core.net.packetaddr.PacketAddrType packet_encoding = 7;
|
2016-08-28 17:41:45 -04:00
|
|
|
}
|
2016-09-25 16:54:18 -04:00
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// ClientConfig is the protobuf config for Socks client.
|
2016-09-25 16:54:18 -04:00
|
|
|
message ClientConfig {
|
2018-10-18 03:25:58 -04:00
|
|
|
// Sever is a list of Socks server addresses.
|
2016-10-12 12:43:55 -04:00
|
|
|
repeated v2ray.core.common.protocol.ServerEndpoint server = 1;
|
2021-09-16 02:42:12 -04:00
|
|
|
Version version = 2;
|
2024-03-16 06:21:42 -04:00
|
|
|
|
|
|
|
bool delay_auth_write = 3;
|
2017-11-27 16:09:30 -05:00
|
|
|
}
|