diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2019-10-08 07:23:31 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2019-10-08 16:44:11 +0200 |
commit | afa6e340c084542ef416afc9aaaa6dd0329f5507 (patch) | |
tree | 2c0ccfe2330f827a4cfdae7ac896ac22244d2faf /lib/includes | |
parent | 7f6169ba6e95d319bed40f7942eeed1c4bb31936 (diff) | |
download | gnutls-afa6e340c084542ef416afc9aaaa6dd0329f5507.tar.gz |
session tickets: parse extension during session resumption on client side
It is possible for a server to send a new session ticket during
TLS1.2 resumption. To be able to parse it as client we need to
check the extension during resumption as well.
Resolves: #841
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'lib/includes')
-rw-r--r-- | lib/includes/gnutls/gnutls.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/includes/gnutls/gnutls.h.in b/lib/includes/gnutls/gnutls.h.in index 6b35c44342..b4830cc8d3 100644 --- a/lib/includes/gnutls/gnutls.h.in +++ b/lib/includes/gnutls/gnutls.h.in @@ -3023,12 +3023,12 @@ typedef enum { /* Register a custom tls extension */ -int gnutls_ext_register(const char *name, int type, gnutls_ext_parse_type_t parse_type, +int gnutls_ext_register(const char *name, int type, gnutls_ext_parse_type_t parse_point, gnutls_ext_recv_func recv_func, gnutls_ext_send_func send_func, gnutls_ext_deinit_data_func deinit_func, gnutls_ext_pack_func pack_func, gnutls_ext_unpack_func unpack_func); -int gnutls_session_ext_register(gnutls_session_t, const char *name, int type, gnutls_ext_parse_type_t parse_type, +int gnutls_session_ext_register(gnutls_session_t, const char *name, int type, gnutls_ext_parse_type_t parse_point, gnutls_ext_recv_func recv_func, gnutls_ext_send_func send_func, gnutls_ext_deinit_data_func deinit_func, gnutls_ext_pack_func pack_func, gnutls_ext_unpack_func unpack_func, unsigned flags); |