summaryrefslogtreecommitdiff
path: root/lib/gnutls_int.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-12-06 13:32:28 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2018-02-19 15:29:36 +0100
commitcb3db8dc2cd1fbb2fdba02378c192a3d2460f448 (patch)
tree758a298eeeea2f8d9aeae0defb4a273571723ab2 /lib/gnutls_int.h
parent9829ef9a3ca06d60472599df7c74ebb9a53f1fe2 (diff)
downloadgnutls-cb3db8dc2cd1fbb2fdba02378c192a3d2460f448.tar.gz
ocsp: send all the OCSP responses under TLS1.3
That is, any responses set by the caller application (directly or via a callback), will be sent to the peer. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/gnutls_int.h')
-rw-r--r--lib/gnutls_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h
index 63111a3a89..439b2e8890 100644
--- a/lib/gnutls_int.h
+++ b/lib/gnutls_int.h
@@ -1083,7 +1083,7 @@ typedef struct {
* to change them.
*/
gnutls_pcert_st *selected_cert_list;
- int16_t selected_cert_list_length;
+ uint16_t selected_cert_list_length;
struct gnutls_privkey_st *selected_key;
/* new callbacks such as gnutls_certificate_retrieve_function3
@@ -1092,7 +1092,7 @@ typedef struct {
* set.
*/
gnutls_datum_t *selected_ocsp;
- int16_t selected_ocsp_length;
+ uint16_t selected_ocsp_length;
gnutls_status_request_ocsp_func selected_ocsp_func;
void *selected_ocsp_func_ptr;
bool selected_need_free;