删除一直未实现的Unix协议相关内容

This commit is contained in:
刘祥超
2024-04-14 17:15:38 +08:00
parent 8ba8528c98
commit e4861c3fa1
19 changed files with 1277 additions and 1534 deletions

View File

@@ -47,9 +47,6 @@ service ServerService {
// 修改网站的TLS设置
rpc updateServerTLS (UpdateServerTLSRequest) returns (RPCSuccess);
// 修改网站的Unix设置
rpc updateServerUnix (UpdateServerUnixRequest) returns (RPCSuccess);
// 修改网站的UDP设置
rpc updateServerUDP (UpdateServerUDPRequest) returns (RPCSuccess);
@@ -222,7 +219,6 @@ message CreateServerRequest {
bytes httpsJSON = 10; // HTTPS协议设置当type为httpProxy或者httpWeb时填写 @link json:https_protocol
bytes tcpJSON = 11; // TCP协议设置当type为tcpProxy时填写 @link json:tcp_protocol
bytes tlsJSON = 12; // TLS协议设置当type为tcpProxy时填写 @link json:tls_protocol
bytes unixJSON = 13; // 备用参数,不用填写
bytes udpJSON = 14; // UDP协议设置当type为udpProxy时填写 @link json:udp_protocol
int64 webId = 15; // 可选项Web配置ID当type为httpProxy或者httpWeb时填写可以通过 /HTTPWebService/createHTTPWeb 接口创建;如果你需要配置缓存等信息时需要在 HTTPWebService 接口操作
bytes reverseProxyJSON = 16; // 反向代理(包含源站)配置引用,此项可以在创建网站后再设置 @link json:reverse_proxy_ref
@@ -324,11 +320,6 @@ message UpdateServerTLSRequest {
bytes tlsJSON = 2; // TLS协议设置当type为tcpProxy时填写 @link json:tls_protocol
}
message UpdateServerUnixRequest {
int64 serverId = 1; // 网站ID
bytes unixJSON = 2;
}
message UpdateServerUDPRequest {
int64 serverId = 1; // 网站ID
bytes udpJSON = 2; // UDP协议设置当type为udpProxy时填写 @link json:udp_protocol