update-02.01
This commit is contained in:
parent
5894a9a29c
commit
7fc8d0b573
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue