Click here to Skip to main content
15,886,733 members
Articles / Desktop Programming / Win32

Chat Client Server

Rate me:
Please Sign up or sign in to vote.
4.21/5 (72 votes)
18 May 2007CPOL1 min read 334.7K   43K   79   44
An implementation of chat client and server with win32 sockets
Sample Image - chat_client_server.jpg - Click to enlarge image

Introduction

Recently I got myself introduced to socket programming. I read through many books and articles to get an insight into the subject. After learning a bit, I decided to share my knowledge with the world. For this purpose, I created a simple console based chat application. I hope this will be a good reference code for C++ socket programming. I am going to introduce the following concepts to you here.

  • Sockets
  • Multi threading

What is Chat Client Server?

The demo project given along with this article consists of two console-based applications.

Chat Server

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

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.

Please download the PDF document to read the rest of the documentation. I have created a PDF because the article consists of 2-3 diagrams.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) DWS
Australia Australia

Comments and Discussions

 
Generalthnx Pin
harshmttl22-Jan-09 7:21
harshmttl22-Jan-09 7:21 
GeneralRespected sir Pin
shakher sumsher21-Jan-09 18:54
shakher sumsher21-Jan-09 18:54 
GeneralC cde for chat server Pin
avinashk1429-Aug-08 0:08
avinashk1429-Aug-08 0:08 
GeneralI want to implement a chat server/client Pin
richa.cseit28-Feb-08 3:58
richa.cseit28-Feb-08 3:58 
GeneralRe: I want to implement a chat server/client Pin
chandreshpratapsrivastava23-Mar-09 4:18
chandreshpratapsrivastava23-Mar-09 4:18 
QuestionWant to develop a chat client Pin
dipuThegr814-Nov-07 18:16
dipuThegr814-Nov-07 18:16 
Generalwchar_t Pin
Man_cool9-Jul-07 19:42
Man_cool9-Jul-07 19:42 
QuestionError? Pin
XHungChung10-Nov-06 0:33
XHungChung10-Nov-06 0:33 
AnswerRe: Error? Pin
Boby Thomas P10-Nov-06 0:37
Boby Thomas P10-Nov-06 0:37 
Generalbehavior after cable break Win2k/ Winxp Pin
Bennet Yee12-May-06 20:13
Bennet Yee12-May-06 20:13 
Generali have an idea Pin
noise@ASU9-May-06 15:52
noise@ASU9-May-06 15:52 
GeneralRe: i have an idea Pin
Boby Thomas P9-May-06 21:22
Boby Thomas P9-May-06 21:22 
Generalintegration of project Pin
dimas757-May-06 9:54
dimas757-May-06 9:54 
GeneralRe: integration of project Pin
mysterious_caveman10-Jun-07 10:43
mysterious_caveman10-Jun-07 10:43 
Generalthanks Pin
raul_sfk7-May-06 0:48
raul_sfk7-May-06 0:48 
GeneralRe: thanks Pin
Boby Thomas P7-May-06 8:56
Boby Thomas P7-May-06 8:56 
Generalinfo required Pin
SunithaC7-May-06 0:43
SunithaC7-May-06 0:43 
GeneralRe: info required Pin
Boby Thomas P7-May-06 8:56
Boby Thomas P7-May-06 8:56 
GeneralRe: info required Pin
roninttk9-May-06 22:13
roninttk9-May-06 22:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.