diff --git a/comm/comm.c b/comm/comm.c index 16900fc..db331d6 100644 --- a/comm/comm.c +++ b/comm/comm.c @@ -32,5 +32,3 @@ void send_message(int sfd, char* message) free(msg_to_send); } - - diff --git a/comm/comm.h b/comm/comm.h index 11d1729..80e7139 100644 --- a/comm/comm.h +++ b/comm/comm.h @@ -3,8 +3,6 @@ #define MAX_DATA_SIZE 2048 -#define MAX_CONNECTIONS 50 - /** * void recv_message * @@ -32,5 +30,4 @@ void send_message(int sfd, char* message); */ #define DO_MSG_RECV(sfd, buf) recv_message(sfd, &buf);puts(buf);free(buf) - #endif