Added basic server functionality from ex 2 lesson 11

This commit is contained in:
elvis
2022-03-09 19:24:49 +01:00
parent c0372c44e2
commit d0a4e4411e
9 changed files with 869 additions and 0 deletions

7
src/serverWorker.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef SERVERWORKER
#define SERVERWORKER
// funzione eseguita dal generico Worker del pool di thread
void threadF(void *arg);
#endif /* SERVERWORKER */