/* ------------------ inet.h ------------------------- * Definitions for TCP and UDP client / server programs */ #include #include #include #include #include #include #include #include #include #include #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