Client can now actually send messages via command

Client can now specify the recipient of a message and type it. Messages for offline users are saved, unaccesible for now.
This commit is contained in:
2026-01-05 18:04:59 +01:00
parent 4a089ed368
commit 6d495468c8
5 changed files with 216 additions and 54 deletions
+2 -2
View File
@@ -5,11 +5,11 @@ all: client server
client:
mkdir -p build
$(CC) $(CFLAGS) -o build/client client.c
$(CC) $(CFLAGS) -o build/client client.c util/util.c
server:
mkdir -p build
$(CC) $(CFLAGS) -o build/server server.c
$(CC) $(CFLAGS) -o build/server server.c util/util.c
clean:
rm -f client server