Click here to Skip to main content
Licence 
First Posted 1 Jan 2002
Views 257,321
Bookmarked 152 times

IP Multicasting in C#

By | 9 Jan 2002 | Article
A simple client/server implementation of multicasting in C# .NET Framework.

Introduction

This document provides a simple client/server example for setting up a multicast application in C# .NET as a well as the method in which multicasting works and why it is useful now and how, with the increasing availability of bandwidth and the increased use of streaming media, will become a definitive method of data transmission in the near future.


What is IP Multicasting

"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.

The concept behind multicasting can be thought of as the same as terrestrial and satellite based television broadcasting; there is a single satellite or transmitting mast and many receivers. This works because there is no back-channel to the source and routers along the path to receivers are able to create multiple copies of the stream to pass on to other routers and hosts along the route. The process works well as the implementation of the Internet is similar to driving from one side of the country to the other, you will follow various routes and join new ones where necessary that are en-route to your destination.


Requirements of IP Multicasting

A few things must be in place before developing multicasting applications or migrating unicast applications.


Network Requirements

For IP multicasting to work all the routers along the path of communication must be multicast enabled. For internet multicasting, devices must transmit and be a member of the MBONE, which is basically a group of devices within a virtual network that support IP multicasting traffic. The MBONE is at best a temporary utility for all multicasting enabled, in time, the MBONE will fade away and just become another part of the Internet as more and more manufacturers produce routers that support multicasting.


System Requirements

The operating system networking interface must support multicasting. Berkeley Sockets, Windows Sockets 2 and Apple Macintosh Open Transport all support multicasting - I guess this is important as .NET will (hopefully) eventually be ported to all these operating systems.


An IP Multicast Application

RFC1112 "Host Extensions for IP Multicasting" (http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1112.html) recommends a number of API calls that should be available for multicast support. These are -

  • Join a multicast group
  • Leave a multicast group
  • Set the TTL of a multicast group

    The examples included with this documentation will demonstrate each of these .NET Framework API calls.


    Sending data to a Multicast Group

    For a machine to send data to a multicast group the application must join the multicast group, define a TTL for the data and then send the information to the group. This is shown programmatically below -

    Socket s=new Socket(AddressFamily.InterNetwork, 
    				SocketType.Dgram, ProtocolType.Udp);
    

    We first create a socket as if we were creating a normal unicast UDP socket.

    IPAddress ip=IPAddress.Parse("224.5.6.7");
    

    We now need to join a multicast group. Multicast IP addresses are within the Class D range of 224.0.0.0-239.255.255.255 - we can join any of these addresses but most we will use 224.5.6.7 for example purposes.

    s.SetSocketOption(SocketOptionLevel.IP,
    SocketOptionName.AddMembership, new MulticastOption(ip));
    

    We now issue the join command, the socket will be a member of the multicast group 224.5.6.7 once we have joined it.

    s.SetSocketOption(SocketOptionLevel.IP, 
    		SocketOptionName.MulticastTimeToLive, 2);
    

    This sets the time to live for the socket - this is very important in defining scope for the multicast data. Setting a value of 1 will mean the multicast data will not leave the local network, setting it to anything above this will allow the multicast data to pass through several routers, with each router decrementing the TTL by 1. Getting the TTL value right is important for bandwidth considerations.

    IPEndPoint ipep=new IPEndPoint(ip, 4567);
    s.Connect(ipep);
    

    This creates the end point that allows us to send multicast data, we connect the socket to this end point. We are now a fully fledged member of the multicast group and can send data to it -

    // This creates the letters ABCDEFGHIJ
    byte[] b=new byte[10];
    for(int x=0;x<b.Length;x++) b[x]=(byte)(x+65);
    
    s.Send(b,b.Length,SocketFlags.None);
    
    s.Close();
    

    We have now sent the letters ABCDEFGHIJ to the multicast group 224.5.6.7 on port 4567. All applications listening to this will receive this data.


    Receiving Data from a Multicast Group

    Receiving data is easier to setup then to send in C#.

    Socket s=new Socket(AddressFamily.InterNetwork, SocketType.Dgram,
     			ProtocolType.Udp);
    

    We setup the socket in the same manner as we would for a unicast UDP socket.

    IPEndPoint ipep=new IPEndPoint(IPAddress.Any, 4567);
    s.Bind(ipep);
    

    We create an IP endpoint for the incoming data to any IP address on port 4567 and bind that to the socket.

    IPAddress ip=IPAddress.Parse("224.5.6.7");
    
    s.SetSocketOption(SocketOptionLevel.IP,
        SocketOptionName.AddMembership,
            new MulticastOption(ip,IPAddress.Any));
    

    The socket is added to the multicast group 224.5.6.7.

    byte[] b=new byte[1024];
    s.Receive(b);
    string str = System.Text.Encoding.ASCII.GetString(b,0,b.Length);
    Console.WriteLine(str.Trim());
    

    We can now receive any data that is sent to this multicast group.


    Additional Resources

    There are many resources for IP multicasting, a selection of which are listed below -

    IPMI - http://www.ipmulticast.com/
    University of Southern California Multicast - http://netweb.usc.edu/multicast/
    RFC1112 - http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1112.html


    References

    CSCO01 - http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/ipmulti.htm.

  • 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

    Gary Brewer

    Web Developer

    Australia Australia

    Member

    I am a software developer.

    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
    QuestionSocket jump Pinmemberrazorclaw201023:21 29 Dec '11  
    Questionc++ code Pinmembermic sch18:22 20 Nov '11  
    QuestionHow to do SSM in IGMP v3? Pinmemberrengelbr17:27 25 Feb '11  
    Questionwhy do the system beeps? PinmemberAvanish19:23 19 Jul '10  
    Generalhost or client PinmemberMárton Garai0:04 6 May '10  
    QuestionIdentify multicast address where message received PinmemberBatulKaleem6:06 11 Mar '10  
    AnswerRe: Identify multicast address where message received Pinmemberrapid2k21:30 5 Oct '10  
    GeneralmcastSend error: An invalid argument was supplied PinmemberKathy18:05 2 Feb '10  
    GeneralRe: mcastSend error: An invalid argument was supplied PinmemberMember 382958413:33 29 Mar '11  
    GeneralMulticast senders and receivers [modified] Pinmemberpctimhk17:33 17 Jan '10  
    GeneralMulti network interface or multi network adapter PinmemberpH++21:36 3 Nov '08  
    GeneralRe: Multi network interface or multi network adapter PinmemberHaipro23:04 15 Jun '09  
    QuestionMuticast PinmemberSmithakrishnan22:02 13 Mar '08  
    Questionunable to recieve messages in the client PinmemberAnand_1813:28 6 Sep '07  
    Questionhi help me out Pinmembervikram panwar19:05 24 Jul '07  
    GeneralError PinmemberLazyInNet14:44 18 Apr '07  
    QuestionTESTING ON LOCALHOST Pinmemberphydthekid10:05 23 Mar '07  
    QuestionCan it detect a printer IP address over the network? PinmemberJan Palmer16:44 2 Jan '07  
    AnswerRe: Can it detect a printer IP address over the network? PinmemberJan Palmer16:47 2 Jan '07  
    GeneralProblem with VPN Pinmembersalman.ali4:07 28 Oct '06  
    QuestionDatagram packet information...where is it? PinmemberNNN9:53 16 May '06  
    AnswerRe: Datagram packet information...where is it? PinmemberNNN10:59 16 May '06  
    GeneralFirst Connect to the Endpoint before setting socket options Pinmemberalphons6:53 27 Oct '05  
    GeneralRe: First Connect to the Endpoint before setting socket options Pinmembernunomag0:20 18 Jan '06  
    QuestionRun-time Problems with Sender on VS.NET 2003 Pinsusswickwack11:41 5 Oct '05  

    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
    Web01 | 2.5.120517.1 | Last Updated 10 Jan 2002
    Article Copyright 2002 by Gary Brewer
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid