sudo and doxygen

This commit is contained in:
2020-06-01 23:23:23 +02:00
parent 3387aa7ca1
commit fda48edaf0
9 changed files with 237 additions and 23 deletions

View File

@@ -7,12 +7,25 @@
class conexion_ssl : public conexion
{
public:
/**
* @brief conexion
* Object that launch the secure server and start the secure sessions
* @param conf Configuration file
*/
conexion_ssl(config_reader &conf);
void start_server();
private:
/*void init_openssl();
void cleanup_openssl();*/
/**
* @brief create_context
* Create the SSL context
* @return SSL context
*/
SSL_CTX *create_context();
/**
* @brief configure_context
* Configure the SSL context
* @param ctx Contest to configure
*/
void configure_context(SSL_CTX *ctx);
};