Sortix main manual
This manual documents Sortix main. You can instead view this document in the latest official manual.
NAME
BIO_should_read, BIO_should_write, BIO_should_io_special, BIO_retry_type, BIO_should_retry, BIO_get_retry_BIO, BIO_get_retry_reason, BIO_set_retry_reason — BIO retry functionsSYNOPSIS
#include <openssl/bio.h>BIO_should_read(BIO *b);
BIO_should_write(BIO *b);
BIO_should_io_special(BIO *b);
BIO_retry_type(BIO *b);
BIO_should_retry(BIO *b);
#define BIO_FLAGS_WRITE 0x02
#define BIO_FLAGS_IO_SPECIAL 0x04
#define BIO_FLAGS_RWS \
(BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL)
#define BIO_FLAGS_SHOULD_RETRY 0x08
BIO_get_retry_BIO(BIO *bio, int *reason);
BIO_get_retry_reason(BIO *bio);
BIO_set_retry_reason(BIO *bio, int reason);