Multi Chat C - A socket-based multi-client chat written with C code
Open terminal
make all
./server
From other terminal
telnet 127.0.0.1 4020
From yet another terminal
telnet 127.0.0.1 4020
Start typing text in your telnet sessions. Typing "quit" will cause the connection to terminate. Typing nothing for 10 seconds will cause connection to terminate.
This is a socket-based multi-client chat that echoes one user's chat to other user's chat telnet sessions.
- Multiple telnet chat sessions
- select()
- non-blocking read/write sockets
- Time out inactive sockets
- signal handling (SIGALRM)
- sigprocmask()
- sigaction()
- Docker instructions
Lambert Lum
This software is copyright (c) 2019 by Lambert Lum
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.