From b80f859974017753ac310fcf7a1af5166fa5a820 Mon Sep 17 00:00:00 2001 From: Nathan Singer Date: Tue, 30 Sep 2025 14:18:14 -0400 Subject: [PATCH] rearranges and renames --- socket.c => comm/comm.c | 2 +- socket.h => comm/comm.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename socket.c => comm/comm.c (96%) rename socket.h => comm/comm.h (100%) diff --git a/socket.c b/comm/comm.c similarity index 96% rename from socket.c rename to comm/comm.c index 6f86f35..16900fc 100644 --- a/socket.c +++ b/comm/comm.c @@ -3,7 +3,7 @@ #include #include -#include "socket.h" +#include "comm.h" void recv_message(int sfd, char** message) { diff --git a/socket.h b/comm/comm.h similarity index 100% rename from socket.h rename to comm/comm.h