| RSA BSAFE Micro Edition Suite |
Streamlined security for mobile and embedded devices |
 
![]() |
Functions | |
| int R_CDECL | SSL_set_fd (SSL *ssl, int fd) |
| Binds the file descriptor fd to the SSL structure ssl. More... | |
| int R_CDECL | 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 R_CDECL | 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 R_CDECL | SSL_get_fd (SSL *ssl) |
| Retrieves the file descriptor associated with the read BIO of the SSL connection ssl. More... | |
| void R_CDECL | 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 value for the SSL structure. More... | |
| int | SSL_get_read_ahead (SSL *ssl) |
| Returns the read ahead flag value from the SSL structure. 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 read ahead flag value from the SSL structure. SSL_get_read_ahead() returns the status of the read ahead flag by directly accessing the SSL structure. The read ahead flag controls whether more data is read from the network than requested (if it is previously determined to be available). This option can be used to achieve significant throughput improvement.
|
|
|
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 value for the SSL structure. SSL_set_read_ahead() sets the read ahead flag by directly accessing the SSL structure. The read ahead flag controls whether more data is read from the network than requested (if it is previously determined to be available). This option can be used to achieve significant throughput improvement.
|
|
||||||||||||
|
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().
|