Lines Matching refs:blocking
5 SSL_set_blocking_mode, SSL_get_blocking_mode - configure blocking mode for a
12 int SSL_set_blocking_mode(SSL *s, int blocking);
17 SSL_set_blocking_mode() can be used to enable or disable blocking mode on a QUIC
18 connection SSL object. By default, blocking is enabled, unless the SSL object is
20 descriptor (see L<BIO_get_rpoll_descriptor(3)>), as blocking mode cannot be
23 To enable blocking mode, call SSL_set_blocking_mode() with I<blocking> set to 1;
24 to disable it, call SSL_set_blocking_mode() with I<blocking> set to 0.
26 To retrieve the current blocking mode, call SSL_get_blocking_mode().
34 of SSL object, such as those for TLS, automatically function in blocking or
43 connection SSL object with a network BIO which cannot support blocking mode. To
44 re-enable blocking mode in this case, an application must set a network BIO
45 which can support blocking mode and explicitly call SSL_set_blocking_mode().
51 or if blocking mode cannot be used for the given connection.
53 SSL_get_blocking_mode() returns 1 if blocking is currently enabled. It returns