update-02.01

This commit is contained in:
github-actions[bot] 2022-02-01 20:30:22 +08:00
parent 5894a9a29c
commit 7fc8d0b573
1 changed files with 5 additions and 1 deletions

View File

@ -201,6 +201,9 @@ local function processData(szType, content)
result.quic_key = info.key
result.quic_security = info.securty
end
if info.net == 'grpc' then
result.grpc_serviceName = info.path
end
if info.security then
result.security = info.security
end
@ -382,7 +385,8 @@ local function processData(szType, content)
result.quic_security = params.quicSecurity or "none"
end
if params.type == 'grpc' then
result.serviceName = params.serviceName
if params.path then result.grpc_serviceName = params.path end
if params.serviceName then result.grpc_serviceName = params.serviceName end
end
if params.security == "tls" then
result.tls = "1"