We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3292f14 commit 48c82e1Copy full SHA for 48c82e1
Packet++/header/SSLCommon.h
@@ -100,8 +100,6 @@ namespace pcpp
100
/// SSL/TLS versions enum
101
enum SSLVersionEnum
102
{
103
- /// SSL 2.0
104
- SSL2 = 0x0200,
105
/// SSL 3.0
106
SSL3 = 0x0300,
107
/// TLS 1.0
Packet++/src/SSLCommon.cpp
@@ -23,9 +23,6 @@ namespace pcpp
23
return static_cast<SSLVersion::SSLVersionEnum>(m_SSLVersionValue);
24
}
25
26
- if (m_SSLVersionValue == 0x200)
27
- return SSLVersion::SSL2;
28
-
29
return SSLVersion::Unknown;
30
31
0 commit comments