Add shadowsocks 2022 multi-user inbound

This commit is contained in:
世界 2022-05-24 07:25:12 +08:00
parent b6391cbbe1
commit cf7e675c45
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 427 additions and 50 deletions

View file

@ -12,7 +12,20 @@ import "common/net/address.proto";
message ServerConfig {
string method = 1;
string key = 2;
repeated xray.common.net.Network network = 3;
string email = 3;
repeated xray.common.net.Network network = 4;
}
message MultiUserServerConfig {
string method = 1;
string key = 2;
repeated User users = 3;
repeated xray.common.net.Network network = 4;
}
message User {
string key = 1;
string email = 2;
}
message ClientConfig {