
Qualoo is a lightweight chat program written in c++ with an ncurses GUI frontend. The main concept is to eventually implement encryption, thus making it a secure way of communication. It was never the idea to recreate an IRC-protocol or such and thus things like channels, DCC send, ... are not supported.
The current version only supports starting a server and connecting to it via a client.
Although it currently only works in linux, you can run it on windows in cygwin. Source can be found here. Compiling information:
g++ Qclient.cpp -o Qclient -lcurses -pthread
g++ Qserver.cpp -o Qserver
This program is my first c++ project ... ever. The program is far from finished, so use it at your own risk :). Several memory acces protections still need to be added and encryption must still be implemented.
If you have any suggestions, comments or improvements (and I'm sure there are many) be sure to let me know!