Blame view

server.h 243 Bytes
8d4694b6   achemin1   feat: server list...
1
2
3
4
5
6
7
8
9
  #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);
  
b82d369c   achemin1   feat: we can now ...
10
11
  int boucleServeur2(int ecoute);
  
8d4694b6   achemin1   feat: server list...
12
  #endif