WHY2/include/chat/common.h

18 lines
317 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/memory.h>
//DEFINES
#define SA struct sockaddr
#define SERVER_PORT 1204
#define SEND_LENGTH 4096
#endif