ServidorTFG
conexion_ssl.h
1 #ifndef CONEXION_SSL_H
2 #define CONEXION_SSL_H
3 #include "conexion.h"
4 
5 #include <openssl/ssl.h>
6 
7 class conexion_ssl : public conexion
8 {
9 public:
16  void start_server();
17 private:
23  SSL_CTX *create_context();
29  void configure_context(SSL_CTX *ctx);
30 };
31 
32 #endif // CONEXION_SSL_H
conexion_ssl::start_server
void start_server()
start_server Start the server
Definition: conexion_ssl.cpp:25
conexion_ssl
Definition: conexion_ssl.h:7
conexion_ssl::conexion_ssl
conexion_ssl(config_reader &conf)
conexion Object that launch the secure server and start the secure sessions
Definition: conexion_ssl.cpp:20
config_reader
Definition: config_reader.h:6
conexion
Definition: conexion.h:7