Lines Matching refs:mode
5 …ear_mode, SSL_set_mode, SSL_clear_mode, SSL_CTX_get_mode, SSL_get_mode - manipulate SSL engine mode
11 long SSL_CTX_set_mode(SSL_CTX *ctx, long mode);
12 long SSL_CTX_clear_mode(SSL_CTX *ctx, long mode);
13 long SSL_set_mode(SSL *ssl, long mode);
14 long SSL_clear_mode(SSL *ssl, long mode);
21 SSL_CTX_set_mode() adds the mode set via bit-mask in B<mode> to B<ctx>.
23 SSL_CTX_clear_mode() removes the mode set via bit-mask in B<mode> from B<ctx>.
25 SSL_set_mode() adds the mode set via bit-mask in B<mode> to B<ssl>.
27 SSL_clear_mode() removes the mode set via bit-mask in B<mode> from B<ssl>.
29 SSL_CTX_get_mode() returns the mode set for B<ctx>.
31 SSL_get_mode() returns the mode set for B<ssl>.
35 The following mode changes are available:
105 SSL_ERROR_WANT_ASYNC with this mode set if an asynchronous capable engine is
124 SSL_CTX_set_mode() and SSL_set_mode() return the new mode bit-mask
125 after adding B<mode>.