Alsmost TLS

This commit is contained in:
Brad Arant 2019-09-21 13:08:38 -07:00
parent 10fa23bba3
commit 385c7068e1
4 changed files with 2 additions and 4 deletions

BIN
HTTPServer Executable file

Binary file not shown.

View File

@ -5,7 +5,7 @@ do
filename="${file%.*}"
list="$list $filename.o"
echo -n "Compiling $filename..."
g++ -c -I../CoreUtils -I../ServerCore $file &
g++ -g -c -I../CoreUtils -I../ServerCore $file
if [ $? = '0' ]
then
echo "OK"
@ -18,8 +18,7 @@ done
wait
echo -n "Building executable HTTPServer..."
echo $list
g++ -o HTTPServer -I../CoreUtils -I../ServerCore -L../CoreUtils -L../ServerCore -lCoreUtils -lServerCore $list
g++ -g -o HTTPServer $list -L../CoreUtils -lCoreUtils -L../ServerCore -lServerCore -lpthread -luuid -lssl -lcrypto
if [ $? = '0' ]
then
echo "OK"

BIN
core Normal file

Binary file not shown.

View File

@ -39,7 +39,6 @@ int main(int argc, char **argv) {
catch(coreutils::Exception exception) {
std::cout << exception.text << " Error reason is '" << strerror(exception.errorNumber) << "' in file " << exception.file << " at line " << exception.line << std::endl;
sleep(10);
}
}