20#ifndef __GUACD_SOCKET_SSL_H
21#define __GUACD_SOCKET_SSL_H
32#include <openssl/ssl.h>
guac_socket * guac_socket_open_secure(SSL_CTX *context, int fd)
Creates a new guac_socket which will use SSL for all communication.
Type definitions related to the guac_socket object.
SSL socket-specific data.
Definition socket-ssl.h:38
SSL_CTX * context
The current SSL context.
Definition socket-ssl.h:49
int fd
The file descriptor that SSL communication will take place over.
Definition socket-ssl.h:44
SSL * ssl
The SSL connection, created automatically via guac_socket_open_secure().
Definition socket-ssl.h:55
pthread_mutex_t socket_lock
Lock that is acquired when an instruction is being written, and released when the instruction is fini...
Definition socket-ssl.h:61
The core I/O object of Guacamole.
Definition socket.h:39