From a565c7ef2914722db2f47ac309397bb39f581d6b Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 18 Apr 2023 16:21:28 -0500 Subject: [PATCH] Started working on README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0dc8de6 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +## Chat server +This is a simple, barely-working chat server (which uses a custom protocol). It is written in C, and relies on BSD sockets. + +##Usage +To use it, compile the program with `make`. + + + + +TODO: +- Finish README +- Implement password authentication +- Fix bugs with message string manipulation (the actual message isn't being stored correctly, and contains extra characters). +- Do additional testing to ensure that everything works correctly (it probably doesn't).