Lines Matching +full:mode +full:- +full:flag

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:
46 to SSL_write_ex() or SSL_write() must only send the n-r bytes left, imitating
58 During normal operations, non-application data records might need to be sent or
60 If a non-application data record was processed,
63 If such a non-application data record was processed, the flag
70 non-application data records until either no more data is available or
75 requests, and setting the B<SSL_MODE_AUTO_RETRY> flag will cause the functions
82 non-application record was sent and no application data was sent.
88 Using this flag can
90 This flag has no effect on SSL v2 connections, or on DTLS connections.
96 version; see draft-ietf-tls-downgrade-scsv-00 for details.
100 in draft-ietf-tls-downgrade-scsv-00.
105 SSL_ERROR_WANT_ASYNC with this mode set if an asynchronous capable engine is
111 used for computing the endpoint-pair shared secret. The bug was that the
124 SSL_CTX_set_mode() and SSL_set_mode() return the new mode bit-mask
125 after adding B<mode>.
127 SSL_CTX_get_mode() and SSL_get_mode() return the current bit-mask.
140 Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.