Simple chat application in C.
 
 
Go to file
Aadhavan Srinivasan 291a727dd3 Tried to work on fixing message string bug
.gitignore Updated .gitignore to ignore object files
Makefile Added libstack files to Makefile
README.md Started working on README
file_helpers.c Rewinded 'fp' before closing it
file_helpers.h Added helper functions for file manipulation
main.c Tried to work on fixing message string bug
message.c Used 'tm*' instead of 'tm' for storing time
message.h Used 'tm*' instead of 'tm' for storing time
message_helpers.c Fixed bug with manipulation of the message string, by creating a copy of the string parameter
message_helpers.h Removed unnecessary functions
stack.c Updated stack file; removed 'free' call
stack.h Added libstack files
user.c First commit
user.h First commit

README.md

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).