20 lines
365 B
C
20 lines
365 B
C
#ifndef WHY2_CHAT_COMMON_H
|
|
#define WHY2_CHAT_COMMON_H
|
|
|
|
//INCLUDES
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <why2/flags.h>
|
|
#include <why2/misc.h>
|
|
#include <why2/memory.h>
|
|
#include <pthread.h>
|
|
|
|
//DEFINES
|
|
#define SA struct sockaddr
|
|
#define SERVER_PORT 1204
|
|
#define MAX_CONNECTIONS 1000
|
|
|
|
#endif |