/* inet.h  */
/* insy 550 */

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#define SERV_UDP_PORT 6364
#define SERV_TCP_PORT 6543
#define SERV_HOST_ADDR "127.0.0.1"
#define bzero(b, L) memset(b,0,L)


