first commit, base server

This commit is contained in:
2020-05-08 12:43:46 +02:00
commit e5078b4969
23 changed files with 955 additions and 0 deletions

29
ServidorTFG.pro Normal file
View File

@@ -0,0 +1,29 @@
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
LIBS += -lcrypto -lssl -pthread -lcppunit -lmysqlcppconn
SOURCES += \
main.cpp \
conexion.cpp \
conexion_ssl.cpp \
thread_selector.cpp \
config_reader.cpp \
tests.cpp \
data_acces.cpp \
msql_acces.cpp \
session_manager.cpp \
session_manager_ssl.cpp \
config_package.cpp
HEADERS += \
conexion.h \
conexion_ssl.h \
thread_selector.h \
config_reader.h \
tests.h \
data_acces.h \
msql_acces.h \
session_manager.h \
session_manager_ssl.h \
config_package.h