mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-10 18:22:03 +08:00
删除一直未实现的Unix协议相关内容
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user