WHY2/include/chat/common.h

16 lines
272 B
C

#ifndef WHY2_CHAT_COMMON_H
#define WHY2_CHAT_COMMON_H
//INCLUDES
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <why2/memory.h>
//DEFINES
#define SA struct sockaddr
#define SERVER_PORT 944
#define SEND_LENGTH 4096
#endif