libguac 1.5.5
|
Provides an SSL/TLS implementation of guac_socket. More...
Go to the source code of this file.
Data Structures | |
struct | guac_socket_ssl_data |
SSL socket-specific data. More... | |
Functions | |
guac_socket * | guac_socket_open_secure (SSL_CTX *context, int fd) |
Creates a new guac_socket which will use SSL for all communication. | |
Provides an SSL/TLS implementation of guac_socket.
This header will only be available if libguac was built with SSL support.
guac_socket * guac_socket_open_secure | ( | SSL_CTX * | context, |
int | fd ) |
Creates a new guac_socket which will use SSL for all communication.
Freeing this guac_socket will automatically close the associated file descriptor.
context | The SSL_CTX structure describing the desired SSL configuration. |
fd | The file descriptor to use for the SSL connection underlying the created guac_socket. |