From 785bcfbe53726414db2137463e44f0fac8abd5ff Mon Sep 17 00:00:00 2001 From: Nathan Singer Date: Tue, 30 Sep 2025 14:25:23 -0400 Subject: [PATCH] cleans up whitespace and unused define --- comm/comm.c | 2 -- comm/comm.h | 3 --- 2 files changed, 5 deletions(-) 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