Minior fix

This commit is contained in:
世界 2022-06-26 08:32:34 +08:00
parent 830a2f478e
commit 131cb4e2a5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -32,7 +32,7 @@ func isTLSHandshake(payload []byte) bool {
if tlsVersion != tlsVersion10 && tlsVersion != tlsVersion12 {
return false
}
return true
return readTLSChunkEnd(payload) > 0
}
func readTLSChunkEnd(payload []byte) int {