diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-21 00:11:27 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-21 00:11:27 +0200 |
commit | f6eef73f7f0e805811bb9c2d748c17d558615a74 (patch) | |
tree | c4873c645c1ffb7893863a040ed5f9a542c191bf /server.c | |
parent | 4fe82b42b6f6fb1a69da2fb2823831e6b3eaa036 (diff) |
Added README.md
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 24 |
1 files changed, 0 insertions, 24 deletions
@@ -1,28 +1,4 @@ // Server for chatty - -// The idea is the following: -// - tcp server that you can send messages to -// - encrypted communication -// - history upon connecting -// - date of messages sent -// - author -// - fingeprint as ID for authorship -// - client for reading the messages and sending them at the same time - -// TODO: -// - min height & width -// - wrapping input -// - max y for new messages and make them scroll -// - check resize event -// - asynchronously receive/send a message -// - fix receiving messages with arbitrary text length - -// TODO: send message to all other clients -// - implement different rooms -// - implement history -// - [ ] fix server copying the bytes correctly -// - implement tls - #include "common.h" #include <arpa/inet.h> #include <errno.h> |