/* ------------------ inet.h -------------------------
 * Definitions for TCP and UDP client / server programs
 */

#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#define SERV_UDP_PORT 6000
#define SERV_TCP_PORT 5500
   /* must not conflict with
    * any other TCP server's port
    */
#define SERV_HOST_ADDR  "127.0.0.1"
/* "134.60.66.5": it's thales */

/* "127.0.0.1"  */
   /*local host*/

#define MAXLINE 256

