mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-05-01 01:44:15 +00:00
Add shadowsocks 2022 relay service
This commit is contained in:
parent
a1c3aed9d3
commit
ba4ce4c24f
6 changed files with 452 additions and 54 deletions
|
@ -24,6 +24,21 @@ message MultiUserServerConfig {
|
|||
repeated xray.common.net.Network network = 4;
|
||||
}
|
||||
|
||||
message RelayDestination {
|
||||
string key = 1;
|
||||
xray.common.net.IPOrDomain address = 2;
|
||||
uint32 port = 3;
|
||||
string email = 4;
|
||||
int32 level = 5;
|
||||
}
|
||||
|
||||
message RelayServerConfig {
|
||||
string method = 1;
|
||||
string key = 2;
|
||||
repeated RelayDestination destinations = 3;
|
||||
repeated xray.common.net.Network network = 4;
|
||||
}
|
||||
|
||||
message User {
|
||||
string key = 1;
|
||||
string email = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue