mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-10 09:31:53 +08:00
网站设置增加HLS加密功能(商业版本)
This commit is contained in:
@@ -122,6 +122,12 @@ service HTTPWebService {
|
||||
// 查找UserAgent设置
|
||||
rpc findHTTPWebUserAgent(FindHTTPWebUserAgentRequest) returns (FindHTTPWebUserAgentResponse);
|
||||
|
||||
// 修改HLS设置
|
||||
rpc updateHTTPWebHLS(UpdateHTTPWebHLSRequest) returns (RPCSuccess);
|
||||
|
||||
// 查找HLS设置
|
||||
rpc findHTTPWebHLS(FindHTTPWebHLSRequest) returns (FindHTTPWebHLSResponse);
|
||||
|
||||
// 根据WebId查找ServerId
|
||||
rpc findServerIdWithHTTPWebId(FindServerIdWithHTTPWebIdRequest) returns (FindServerIdWithHTTPWebIdResponse);
|
||||
}
|
||||
@@ -384,6 +390,21 @@ message FindHTTPWebUserAgentResponse {
|
||||
bytes userAgentJSON = 1;
|
||||
}
|
||||
|
||||
// 修改HLS设置
|
||||
message UpdateHTTPWebHLSRequest {
|
||||
int64 httpWebId = 1; // Web配置ID
|
||||
bytes hlsJSON = 2; // HLS配置
|
||||
}
|
||||
|
||||
// 查找HLS设置
|
||||
message FindHTTPWebHLSRequest {
|
||||
int64 httpWebId = 1; // Web配置ID
|
||||
}
|
||||
|
||||
message FindHTTPWebHLSResponse {
|
||||
bytes hlsJSON = 1; // HLS配置
|
||||
}
|
||||
|
||||
// 根据WebId查找ServerId
|
||||
message FindServerIdWithHTTPWebIdRequest {
|
||||
int64 httpWebId = 1; // Web设置ID
|
||||
|
||||
Reference in New Issue
Block a user