start tcp server implementation

This commit is contained in:
Arthur-Coppey
2021-04-18 03:12:10 +02:00
parent 16648ea908
commit 7d0d4356dc
2 changed files with 38 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// Created by k0rb4k on 30/03/2021.
//
#ifndef QOTD_SERVER_H
#define QOTD_SERVER_H
#include <sys/socket.h>
#include <netinet/in.h>
void tcpListen();
void udpListen();
#endif //QOTD_SERVER_H