Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

LAN Chat Using Multicating

0.00/5 (No votes)
2 Feb 2006 1  
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