diff options
author | lloyd <[email protected]> | 2012-09-14 01:42:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-09-14 01:42:02 +0000 |
commit | 4843f5f22218ec735059b23073883202d8d41585 (patch) | |
tree | ce5a9e265bb4681d88cf08aa66253b97de1b2e3b | |
parent | d79c7b3ae3899c97cfbda3c92458c35150be78e9 (diff) |
secure_renegotiation isn't a session value anymore
-rw-r--r-- | doc/examples/tls_client.cpp | 4 | ||||
-rw-r--r-- | doc/examples/tls_server.cpp | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/doc/examples/tls_client.cpp b/doc/examples/tls_client.cpp index 281ea4dd0..d56143a36 100644 --- a/doc/examples/tls_client.cpp +++ b/doc/examples/tls_client.cpp @@ -73,10 +73,6 @@ bool handshake_complete(const TLS::Session& session) if(!session.session_ticket().empty()) std::cout << "Session ticket " << hex_encode(session.session_ticket()) << "\n"; - std::cout << "Secure renegotiation is" - << (session.secure_renegotiation() ? "" : " NOT") - << " supported\n"; - return true; } diff --git a/doc/examples/tls_server.cpp b/doc/examples/tls_server.cpp index 980230d58..4eadb8c79 100644 --- a/doc/examples/tls_server.cpp +++ b/doc/examples/tls_server.cpp @@ -73,10 +73,6 @@ bool handshake_complete(const TLS::Session& session) if(!session.session_ticket().empty()) std::cout << "Session ticket " << hex_encode(session.session_ticket()) << "\n"; - std::cout << "Secure renegotiation is" - << (session.secure_renegotiation() ? "" : " NOT") - << " supported\n"; - return true; } |