summaryrefslogtreecommitdiff
path: root/lib/handshake.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-09-29 10:10:48 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2018-02-19 15:29:35 +0100
commit0acb5e17686fb6261f6129391aa7f81cc959114a (patch)
treebf5f8da7b0de35ad2d1c7a7cc8372c52dd294f28 /lib/handshake.h
parent344633626c9c497a61d975f22f83f227934b4c21 (diff)
downloadgnutls-0acb5e17686fb6261f6129391aa7f81cc959114a.tar.gz
handshake: accept hello retry request in client side
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/handshake.h')
-rw-r--r--lib/handshake.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/handshake.h b/lib/handshake.h
index 1af8fbc19c..fb944925e9 100644
--- a/lib/handshake.h
+++ b/lib/handshake.h
@@ -77,7 +77,9 @@ int _gnutls_user_hello_func(gnutls_session_t session,
void _gnutls_handshake_hash_buffers_clear(gnutls_session_t session);
-int _gnutls13_handshake_hash_buffers_synth(gnutls_session_t session);
+int _gnutls13_handshake_hash_buffers_synth(gnutls_session_t session,
+ const mac_entry_st *prf,
+ unsigned client);
#define STATE session->internals.handshake_state
#define FINAL_STATE session->internals.handshake_final_state
@@ -128,6 +130,10 @@ int _gnutls13_handshake_client(gnutls_session_t session);
int _gnutls13_handshake_server(gnutls_session_t session);
int
+_gnutls13_recv_hello_retry_request(gnutls_session_t session,
+ gnutls_buffer_st *buf);
+
+int
_gnutls13_recv_async_handshake(gnutls_session_t session, gnutls_buffer_st *buf);
#endif