#ifndef __server_h__
#define __server_h__

    #define MYPORT 3490     /* the port users will be connecting to */
	#define SERVERPORT 3590 //the port the server will connect on to other servers
    
	#define BACKLOG 10     /* how many pending connections queue will hold */
    #define MAXDATASIZE 100 /* max number of bytes we can get at once */
	#define MAX_CLIENTS_NUM 100
	#define MAX_SERVERS_NUM 100

void Recv_Send (int recv_sock, int send_sock);


#endif