Made in C++ & C#
This is an ongoing project which allows for multiple clients to send messages to a C++ server via a C# Client. Instead of making use of threading, I use the select function provided by winsock to emulate the behavior of multithreading, ultimately reducing complexity and load.
It allows multiple clients to connect using the fd_set structure, the select() function and three macros: FD_CLR, FD_SET and FD_ZERO. I have personally tested it with over 16 simultaneous client connections from different computers, and there was no noticeable delay in delivering messages to all clients.
One of the issues I encountered for this project was to have a way to send the message to all connected clients, but not echo the message back to the sending client. This was solvable by putting all connected clients into an iteratable fd list, then using a for loop to exclude the sending of the message to the sending and listening port- a rather simple implementation, but one that works very well. Allowing for custom username selection was also something to think about, but it was ultimately solvable by using delimiters in the same byte array sent to the connected port and splitting up separate username and chat message parts. This ongoing project also was a great lesson into Amazon's AWS ecosystem and learning how RDS plus Lightsail works.
I plan on updating the general feel of the C# client GUI to more closely mirror that retro feeling which AOL Instant Messenger provided and am currently working on an implementation of AES 128-bit encryption and decryption inside of the C# client.
This project is available for viewing from my BitBucket repository under SideProjects, where the Chat Client (CHash_Client) and server (Chat_Program) are separate repositories.