131 lines
4.8 KiB
HTML
131 lines
4.8 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="reference" />
|
|
<meta name="DC.Title" content="Example: Receive multicast datagrams" />
|
|
<meta name="abstract" content="This example enables a socket to receive multicast datagrams." />
|
|
<meta name="description" content="This example enables a socket to receive multicast datagrams." />
|
|
<meta name="DC.Relation" scheme="URI" content="xmulticast.htm" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 2001, 2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2001, 2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="x2multicast" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>Example: Receive multicast datagrams </title>
|
|
</head>
|
|
<body id="x2multicast"><a name="x2multicast"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">Example: Receive multicast datagrams </h1>
|
|
<div><p>This example enables a socket to receive multicast datagrams.</p>
|
|
<div class="section"><div class="note"><span class="notetitle">Note:</span> By using the code examples, you agree to the terms of the <a href="codedisclaimer.htm">Code license and disclaimer information</a>.</div>
|
|
<pre>#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <arpa/inet.h>
|
|
#include <netinet/in.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
struct sockaddr_in localSock;
|
|
struct ip_mreq group;
|
|
int sd;
|
|
int datalen;
|
|
char databuf[1024];
|
|
|
|
int main (int argc, char *argv[])
|
|
{
|
|
|
|
/* ------------------------------------------------------------*/
|
|
/* */
|
|
/* Receive Multicast Datagram code example. */
|
|
/* */
|
|
/* ------------------------------------------------------------*/
|
|
|
|
/*
|
|
* Create a datagram socket on which to receive.
|
|
*/
|
|
sd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
if (sd < 0) {
|
|
perror("opening datagram socket");
|
|
exit(1);
|
|
}
|
|
|
|
/*
|
|
* Enable SO_REUSEADDR to allow multiple instances of this
|
|
* application to receive copies of the multicast datagrams.
|
|
*/
|
|
{
|
|
int reuse=1;
|
|
|
|
if (setsockopt(sd, SOL_SOCKET, SO_REUSEADDR,
|
|
(char *)&reuse, sizeof(reuse)) < 0) {
|
|
perror("setting SO_REUSEADDR");
|
|
close(sd);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Bind to the proper port number with the IP address
|
|
* specified as INADDR_ANY.
|
|
*/
|
|
memset((char *) &localSock, 0, sizeof(localSock));
|
|
localSock.sin_family = AF_INET;
|
|
localSock.sin_port = htons(5555);;
|
|
localSock.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
if (bind(sd, (struct sockaddr*)&localSock, sizeof(localSock))) {
|
|
perror("binding datagram socket");
|
|
close(sd);
|
|
exit(1);
|
|
}
|
|
|
|
|
|
/*
|
|
* Join the multicast group 225.1.1.1 on the local 9.5.1.1
|
|
* interface. Note that this IP_ADD_MEMBERSHIP option must be
|
|
* called for each local interface over which the multicast
|
|
* datagrams are to be received.
|
|
*/
|
|
group.imr_multiaddr.s_addr = inet_addr("225.1.1.1");
|
|
group.imr_interface.s_addr = inet_addr("9.5.1.1");
|
|
if (setsockopt(sd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
|
|
(char *)&group, sizeof(group)) < 0) {
|
|
perror("adding multicast group");
|
|
close(sd);
|
|
exit(1);
|
|
}
|
|
|
|
/*
|
|
* Read from the socket.
|
|
*/
|
|
datalen = sizeof(databuf);
|
|
if (read(sd, databuf, datalen) < 0) {
|
|
perror("reading datagram message");
|
|
close(sd);
|
|
exit(1);
|
|
}
|
|
|
|
}</pre>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="xmulticast.htm" title="IP multicasting provides the capability for an application to send a single IP datagram that a group of hosts in a network can receive.">Examples: Use multicasting with AF_INET</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |