mirror of
https://github.com/bol-van/zapret.git
synced 2025-12-31 11:55:55 +03:00
nfqws: fix reasm seq handling
This commit is contained in:
@@ -131,7 +131,7 @@ size_t TLSHandshakeLen(const uint8_t *data)
|
||||
}
|
||||
bool IsTLSHandshakeClientHello(const uint8_t *data, size_t len)
|
||||
{
|
||||
return len>=4 && data[0]==0x01;
|
||||
return len>=4 && data[0]==0x01 && TLSHandshakeLen(data)>0;
|
||||
}
|
||||
bool IsTLSHandshakeFull(const uint8_t *data, size_t len)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user