Skip to content
Snippets Groups Projects
Commit a4a675f9 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

Two new flags in Connection. One to indicate that it is a raw TLS

section (that is, not SASL).  The second to indicate that we need to
do SSL_accept on this connection.
parent 8af470a5
No related branches found
No related tags found
No related merge requests found
......@@ -601,6 +601,9 @@ typedef struct slap_conn {
BerElement *c_currentber; /* ber we're attempting to read */
int c_writewaiter; /* true if writer is waiting */
int c_is_tls; /* true if this LDAP over raw TLS */
int c_needs_tls_accept; /* true if SSL_accept should be called */
long c_n_ops_received; /* num of ops received (next op_id) */
long c_n_ops_executing; /* num of ops currently executing */
long c_n_ops_pending; /* num of ops pending execution */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment