summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-29 14:06:20 +0300
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-29 14:06:20 +0300
commit4aebdbe7d424f2a1705f3751c5fef6f2e5f4e616 (patch)
tree560af561bf63c7955dca4981b17097c21d4ae359
parentc5833a11186d7606e54c626e4a0d85c16a4515d6 (diff)
downloadgnutls-4aebdbe7d424f2a1705f3751c5fef6f2e5f4e616.tar.gz
Corrected gnutls_certificate_server_set_request().
-rw-r--r--lib/gnutls_int.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h
index b9904b2c57..bffa3e41d7 100644
--- a/lib/gnutls_int.h
+++ b/lib/gnutls_int.h
@@ -837,9 +837,10 @@ typedef struct
/* if this is non zero a certificate request message
* will be sent to the client. - only if the ciphersuite
- * supports it.
+ * supports it. In server side it contains GNUTLS_CERT_REQUIRE
+ * or similar.
*/
- unsigned send_cert_req:1;
+ unsigned send_cert_req;
size_t max_handshake_data_buffer_size;