Click here to Skip to main content
Licence 
First Posted 2 Feb 2006
Views 56,916
Bookmarked 28 times

LAN Chat Using Multicating

By | 2 Feb 2006 | Article
An article on LAN chat using multicasting.

Sample Image - LanChat.jpg

Introduction

This is the Simple Project Will demonstrate the use of multicating in Lan Chat.

Background

"IP Multicasting is a bandwidth-conserving technology that reduces traffic by simultaneously delivering a single stream of information to thousands of corporate recipients and homes."CSCO01.

To transmit a single message to a select group of recipients. A simple example of multicasting is sending an e-mail message to a mailing list. Teleconferencing and videoconferencing also use multicasting, but require more robust protocols and networks.

And Multicasting is Controlled By IGMP ( Internet Group Management Protocol).

Using the code

In LanChat there is only one exe, It Consists of one thread to listen in multicast address throught port 1000. To accept in comming Advertisements from any machine in local Lan. Then it maintains the list of available Users.

And the message send to particular client using Another UDP.

It is very simple and usefull for office environment. 

STEPS

  1. Run LanChat in one machine.
  2. Click Advertise Button. Then you will be listed in all other LanChat's.
  3. And then Send messages...  

Listen:

Socket s = new Socket(AddressFamily.InterNetwork, 
               SocketType.Dgram, ProtocolType.Udp);
IPEndPoint ipep = new IPEndPoint(IPAddress.Any,int.Parse(port));
s.Bind(ipep);
IPAddress ip=IPAddress.Parse(mcastGroup);
s.SetSocketOption(SocketOptionLevel.IP, 
        SocketOptionName.AddMembership, 
        new MulticastOption(ip,IPAddress.Any));

SEND Message:

try 
{
  IPAddress GroupAddress = IPAddress.Parse(mAddress);
  int GroupPort = port;
  UdpClient sender = new UdpClient();
  IPEndPoint groupEP = new IPEndPoint(GroupAddress,GroupPort);
  byte[] bytes = Encoding.ASCII.GetBytes(message);
  sender.Send(bytes, bytes.Length, groupEP);
  sender.Close();
} 
catch (Exception e) 
{
  MessageBox.Show(e.ToString());
}

Points of Interest

I hope you've enjoyed this little tutorial. In future i will provide you lot more stuffs, And I am expecteding your valuable suggestions.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Andrews Raj

Software Developer (Senior)

India India

Member

I am a software engineer working in Blr, india.
working in c++, vc++, mfc, c#.Net, COM/ATL.
 


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhow to change the path , if one path is busy in network Pinmembervelava6420:44 30 Sep '09  
QuestionHard coded IP? PinmemberRoonda15:09 5 May '08  
AnswerRe: Hard coded IP? PinmemberAndrews Raj23:41 16 May '08  
GeneralMultiCat Pinmemberrajeev822:58 9 Oct '07  
First of all i dont understand what is that MultiCat??Is that something like pussy cat?
Generalip multicasting and remote Pinmemberbalazs_hideghety6:13 13 Aug '07  
GeneralUDP MESSAGE PinmemberGigi Carlino6:13 26 Oct '06  
GeneralRe: UDP MESSAGE PinmemberAndrews Raj23:57 27 Dec '06  
Generalhi andrews Pinmembersudharsong19:32 24 Apr '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 3 Feb 2006
Article Copyright 2006 by Andrews Raj
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid