12 lines
184 B
C
12 lines
184 B
C
#ifndef WHY2_CHAT_COMMON_H
|
|
#define WHY2_CHAT_COMMON_H
|
|
|
|
//INCLUDES
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
|
|
//DEFINES
|
|
#define SA struct sockaddr
|
|
#define SERVER_PORT 8000
|
|
|
|
#endif |