mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Merge remote-tracking branch 'origin/fastpath' into topic/robin/master-test
* origin/fastpath: make version_ok return true for TLSv12
This commit is contained in:
commit
b6991d405b
2 changed files with 3 additions and 1 deletions
|
@ -93,6 +93,7 @@ function version_ok(vers : uint16) : bool
|
|||
case SSLv30:
|
||||
case TLSv10:
|
||||
case TLSv11:
|
||||
case TLSv12:
|
||||
return true;
|
||||
|
||||
default:
|
||||
|
|
|
@ -22,5 +22,6 @@ enum SSLVersions {
|
|||
SSLv20 = 0x0002,
|
||||
SSLv30 = 0x0300,
|
||||
TLSv10 = 0x0301,
|
||||
TLSv11 = 0x0302
|
||||
TLSv11 = 0x0302,
|
||||
TLSv12 = 0x0303
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue