aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/msg_client_hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tls/msg_client_hello.cpp')
-rw-r--r--src/lib/tls/msg_client_hello.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/tls/msg_client_hello.cpp b/src/lib/tls/msg_client_hello.cpp
index 33fc8b72c..011431c7d 100644
--- a/src/lib/tls/msg_client_hello.cpp
+++ b/src/lib/tls/msg_client_hello.cpp
@@ -27,7 +27,6 @@ namespace TLS {
enum {
TLS_EMPTY_RENEGOTIATION_INFO_SCSV = 0x00FF,
- TLS_FALLBACK_SCSV = 0x5600
};
std::vector<uint8_t> make_hello_random(RandomNumberGenerator& rng,
@@ -135,9 +134,6 @@ Client_Hello::Client_Hello(Handshake_IO& io,
cb.tls_modify_extensions(m_extensions, CLIENT);
- if(policy.send_fallback_scsv(client_settings.protocol_version()))
- m_suites.push_back(TLS_FALLBACK_SCSV);
-
hash.update(io.send(*this));
}