first commit, base client with gtk3

This commit is contained in:
2020-05-08 12:42:02 +02:00
commit f9cdde7008
17 changed files with 777 additions and 0 deletions

16
conexion_ssl.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef CONEXION_SSL_H
#define CONEXION_SSL_H
#include "conexion.h"
#include <openssl/ssl.h>
class conexion_ssl : public conexion
{
public:
conexion_ssl(config_reader &conf);
ssize_t read_string(std::string &entrada, int size);
ssize_t write_string(std::string entrada);
private:
SSL* ssl;
};
#endif // CONEXION_SSL_H