WHY2/include/chat/common.h
ENGO150 1147e53f61
defined SERVER_PORT
the port will change
2023-02-09 17:50:34 +01:00

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