both protocols work

This commit is contained in:
Arthur-Coppey 2021-10-18 13:54:08 +02:00
parent 8396042e83
commit 010c9286eb
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
int main(int argc, char *argv[]) {
// TODO: arg options for tcp or udp
udp();
tcp();
return 0;
}

View File

@ -4,7 +4,7 @@ int main(int argc, char *argv[]) {
// char quote[1024];
// getRandomQuote(quote);
// printf("%s\n", quote);
udpServer();
tcpServer();
return 0;
}