Introduction - If you have any usage issues, please Google them yourself
This is a chat program I wrote by MFC. I used windows socket to write this program.
Chat server is an application which does the following operations:
* Listens for incoming calls from clients. Client running in any PC can connect to the server if IP address of the server is known.
* Listens for messages from all the connected clients.
* Broadcasts the message from clients to all the clients connected to the server.
* You can also type-in messages in the server, which will be broadcasted to all the clients.
Chat client does the following things:
* Sends messages to server as well as to all the connected clients.
* Views the messages from all the clients and server.