Add shadowsocks 2022 relay service

This commit is contained in:
世界 2022-06-19 22:17:23 +08:00
parent a1c3aed9d3
commit ba4ce4c24f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 452 additions and 54 deletions

View file

@ -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;