24 lines
692 B
C
24 lines
692 B
C
#include "lib/header.h"
|
|
|
|
|
|
|
|
/* local dependencies */
|
|
#include "lib/network/tcp/server.h"
|
|
#include "lib/network/udp/server.h"
|
|
#include "lib/network/format/serializer.h"
|
|
|
|
|
|
/* headers */
|
|
void* LISTEN_TCP();
|
|
void* LISTEN_UDP();
|
|
void* managePlane(void* THREADABLE_SOCKET);
|
|
// void* manageViewTerm(void* THREADABLE_SOCKET);
|
|
// void* manageCtrlTerm(void* THREADABLE_SOCKET);
|
|
|
|
// VARIABLES THREADS D'ECOUTE TCP/UDP
|
|
static pthread_t listenManagers[2]; // contiendra les THREADS d'écoute
|
|
|
|
// VARIABLES THREADS CONNECTION TCP
|
|
static pthread_t TCPManagers[MAX_TCP_THR]; // contiendra les THREADS TCP
|
|
static int activeTCPManagers[MAX_TCP_THR] = {0}; // contiendra les THREADS TCP actifs
|