|
BIO_ctrl_reset_read_request(3) -- BIO pair BIO
|
The BIO_s_bio() function returns the method for a BIO pair. A BIO pair is a pair of source/sink BIOs where data written to either half of the pair is buffered and can be read from the other half. Both... |
BIO_ctrl_wpending(3) -- BIO control operations
|
The BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl(), and BIO_int_ctrl() functions are BIO control operations taking arguments of various types. These functions are not usually called directly; various... |
|
BIO_debug_callback(3) -- BIO callback functions
|
BIO_set_callback() and BIO_get_callback() set and retrieve the BIO callback, they are both macros. The callback is called during most high level BIO operations. It can be used for debugging purposes t... |
BIO_destroy_bio_pair(3) -- BIO pair BIO
|
The BIO_s_bio() function returns the method for a BIO pair. A BIO pair is a pair of source/sink BIOs where data written to either half of the pair is buffered and can be read from the other half. Both... |
BIO_do_accept(3) -- Accept BIO
|
The BIO_s_accept() function returns the accept BIO method. This is a wrapper round the platform's TCP/IP socket accept routines. Using accept BIOs, TCP/IP connections can be accepted and data transfe... |
BIO_do_connect(3) -- Connect BIO
|
The BIO_s_connect() function returns the connect BIO method. This is a wrapper round the platform's TCP/IP socket connection routines. Using connect BIOs TCP/IP connections can be made and data trans... |
BIO_eof(3) -- BIO control operations
|
The BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl(), and BIO_int_ctrl() functions are BIO control operations taking arguments of various types. These functions are not usually called directly; various... |
BIO_find_type(3) -- BIO chain traversal
|
The BIO_find_type() function searches for a BIO of a given type in a chain, starting at BIO b. If type is a specific type, such as BIO_TYPE_MEM, then a search is made for a BIO of that type. If type i... |
BIO_flush(3) -- BIO control operations
|
The BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl(), and BIO_int_ctrl() functions are BIO control operations taking arguments of various types. These functions are not usually called directly; various... |
BIO_free(3) -- BIO allocation and freeing functions
|
The BIO_new() function returns a new BIO using method type. The BIO_set() function sets the method of an already existing BIO. The BIO_free() function frees up a single BIO. The BIO_vfree()function al... |
BIO_free_all(3) -- BIO allocation and freeing functions
|
The BIO_new() function returns a new BIO using method type. The BIO_set() function sets the method of an already existing BIO. The BIO_free() function frees up a single BIO. The BIO_vfree()function al... |
BIO_f_base64(3) -- BIO filter for base64
|
The BIO_f_base64() function returns the base64 BIO method. This is a filter BIO that base64 encodes any data written through it and decodes any data read through it. Base64 BIOs do not support the BIO... |
BIO_f_buffer(3) -- Buffering BIO
|
The BIO_f_buffer() function returns the buffering BIO method. Data written to a buffering BIO is buffered and periodically written to the next BIO in the chain. Data read from a buffering BIO comes fr... |
BIO_f_cipher(3) -- Cipher BIO filter
|
The BIO_f_cipher() function returns the cipher BIO method. This is a filter BIO that encrypts any data written through it, and decrypts any data read from it. It is a BIO wrapper for the EVP_CipherIni... |
BIO_f_md(3) -- Message digest BIO filter
|
BIO_f_md() returns the message digest BIO method. This is a filter BIO that digests any data passed through it, it is a BIO wrapper for the EVP_DigestInit(), EVP_DigestUpdate(), and EVP_DigestFinal() ... |