mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-05-01 01:44:15 +00:00
Add shadowsocks 2022 multi-user inbound
This commit is contained in:
parent
b6391cbbe1
commit
cf7e675c45
6 changed files with 427 additions and 50 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue