server.h 243 Bytes
#ifndef SERVER_H
#define SERVER_H

int initialisationServeur(char *service,int connexions);
int boucleServeur(int ecoute,int (*traitement)(int));

int serv_printf(int s);
int serv_gestionClient(int s);

int boucleServeur2(int ecoute);

#endif