| RSA BSAFE SSL-C |
Security protocol components for C |
| Search |
Functions | |
| int | SSL_set_fd (SSL *ssl, int fd) |
| Binds the file descriptor fd to the SSL structure ssl. More... | |
| int | SSL_set_rfd (SSL *ssl, int fd) |
| Sets the file descriptor fd which is used when reading data via the SSL connection ssl. More... | |
| int | SSL_set_wfd (SSL *ssl, int fd) |
| Sets the file descriptor fd which is used when writing data via the SSL connection ssl. More... | |
| int | SSL_get_fd (SSL *ssl) |
| Retrieves the file descriptor associated with the read BIO of the SSL connection ssl. More... | |
| void | SSL_set_bio (SSL *ssl, BIO *rbio, BIO *wbio) |
| Sets the BIOs that will be used for reading and writing data when calling SSL_read() and SSL_write() for the specified SSL connection. More... | |
| BIO* | SSL_get_rbio (SSL *ssl) |
| Returns a reference to the SSL read BIO. More... | |
| BIO* | SSL_get_wbio (SSL *ssl) |
| Returns a reference to the SSL write BIO. More... | |
| void | SSL_set_read_ahead (SSL *ssl, int yes) |
| Sets the read-ahead flag. More... | |
| int | SSL_get_read_ahead (SSL *ssl) |
| Returns the value of the read-ahead flag. More... | |
|
|
Retrieves the file descriptor associated with the read BIO of the SSL connection ssl. The file descriptor is set by a prior call to SSL_set_fd(). The file descriptor may also be set for any BIO structure with a file descriptor created by the SSL.
|
|
|
Returns a reference to the SSL read BIO. This BIO is used for all read operations during the SSL session.
|
|
|
Returns the value of the read-ahead flag. This flag controls whether more data is read from the network than requested (if it is previously determined to be available).
|
|
|
Returns a reference to the SSL write BIO. This BIO is used for all write operations during the SSL session.
|
|
||||||||||||||||
|
Sets the BIOs that will be used for reading and writing data when calling SSL_read() and SSL_write() for the specified SSL connection.
|
|
||||||||||||
|
Binds the file descriptor fd to the SSL structure ssl. The descriptor is used by a new socket BIO for read and write calls underpinning both SSL_read() and SSL_write(). Existing read and write BIOs are removed and replaced by a socket BIO.
|
|
||||||||||||
|
Sets the read-ahead flag. This flag controls whether more data is read from the network than requested (if it has been previously determined to be available).
|
|
||||||||||||
|
Sets the file descriptor fd which is used when reading data via the SSL connection ssl. The descriptor is used by the receive call underpinning SSL_read().
|
|
||||||||||||
|
Sets the file descriptor fd which is used when writing data via the SSL connection ssl. The descriptor is used by the send call underpinning SSL_write().
|