免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7392 | 回复: 5
打印 上一主题 下一主题

socket多播数据发送接收问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-08 11:41 |只看该作者 |倒序浏览
本帖最后由 redice 于 2011-09-08 16:21 编辑

这样一段多播发送接收的代码,看起来没有问题,发送方的包可以抓到,但是接收方没有任何反应,请教一下高人问题出在哪里,gcc版本4.4.0, Fedora 11

Listener:
  1. Listener Program

  2. /*
  3. * listener.c -- joins a multicast group and echoes all data it receives from
  4. *                the group to its stdout...
  5. *
  6. * Antony Courtney,        25/11/94
  7. * Modified by: Frédéric Bastien (25/03/04)
  8. * to compile without warning and work correctly
  9. */

  10. #include <sys/types.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <arpa/inet.h>
  14. #include <time.h>
  15. #include <string.h>
  16. #include <stdio.h>


  17. #define HELLO_PORT 12345
  18. #define HELLO_GROUP "225.0.0.37"
  19. #define MSGBUFSIZE 256

  20. main(int argc, char *argv[])
  21. {
  22.      struct sockaddr_in addr;
  23.      int fd, nbytes,addrlen;
  24.      struct ip_mreq mreq;
  25.      char msgbuf[MSGBUFSIZE];

  26.      u_int yes=1;            /*** MODIFICATION TO ORIGINAL */

  27.      /* create what looks like an ordinary UDP socket */
  28.      if ((fd=socket(AF_INET,SOCK_DGRAM,0)) < 0) {
  29.           perror("socket");
  30.           exit(1);
  31.      }


  32. /**** MODIFICATION TO ORIGINAL */
  33.     /* allow multiple sockets to use the same PORT number */
  34.     if (setsockopt(fd,SOL_SOCKET,SO_REUSEADDR,&yes,sizeof(yes)) < 0) {
  35.        perror("Reusing ADDR failed");
  36.        exit(1);
  37.        }
  38. /*** END OF MODIFICATION TO ORIGINAL */

  39.      /* set up destination address */
  40.      memset(&addr,0,sizeof(addr));
  41.      addr.sin_family=AF_INET;
  42.      addr.sin_addr.s_addr=htonl(INADDR_ANY); /* N.B.: differs from sender */
  43.      addr.sin_port=htons(HELLO_PORT);
  44.      
  45.      /* bind to receive address */
  46.      if (bind(fd,(struct sockaddr *) &addr,sizeof(addr)) < 0) {
  47.           perror("bind");
  48.           exit(1);
  49.      }
  50.      
  51.      /* use setsockopt() to request that the kernel join a multicast group */
  52.      mreq.imr_multiaddr.s_addr=inet_addr(HELLO_GROUP);
  53.      mreq.imr_interface.s_addr=htonl(INADDR_ANY);
  54.      if (setsockopt(fd,IPPROTO_IP,IP_ADD_MEMBERSHIP,&mreq,sizeof(mreq)) < 0) {
  55.           perror("setsockopt");
  56.           exit(1);
  57.      }

  58.      /* now just enter a read-print loop */
  59.      while (1) {
  60.           addrlen=sizeof(addr);
  61.           if ((nbytes=recvfrom(fd,msgbuf,MSGBUFSIZE,0,
  62.                                (struct sockaddr *) &addr,&addrlen)) < 0) {
  63.                perror("recvfrom");
  64.                exit(1);
  65.           }
  66.           puts(msgbuf);
  67.      }
  68. }
复制代码
Sender:
  1. Sender Program

  2. /*
  3. * sender.c -- multicasts "hello, world!" to a multicast group once a second
  4. *
  5. * Antony Courtney,        25/11/94
  6. */

  7. #include <sys/types.h>
  8. #include <sys/socket.h>
  9. #include <netinet/in.h>
  10. #include <arpa/inet.h>
  11. #include <time.h>
  12. #include <string.h>
  13. #include <stdio.h>


  14. #define HELLO_PORT 12345
  15. #define HELLO_GROUP "225.0.0.37"

  16. main(int argc, char *argv[])
  17. {
  18.      struct sockaddr_in addr;
  19.      int fd, cnt;
  20.      struct ip_mreq mreq;
  21.      char message[16]="Hello, World!";

  22.      /* create what looks like an ordinary UDP socket */
  23.      if ((fd=socket(AF_INET,SOCK_DGRAM,0)) < 0) {
  24.           perror("socket");
  25.           exit(1);
  26.      }

  27.      /* set up destination address */
  28.      memset(&addr,0,sizeof(addr));
  29.      addr.sin_family=AF_INET;
  30.      addr.sin_addr.s_addr=inet_addr(HELLO_GROUP);
  31.      addr.sin_port=htons(HELLO_PORT);
  32.      
  33.      /* now just sendto() our destination! */
  34.      while (1) {
  35.           if (sendto(fd,message,sizeof(message),0,(struct sockaddr *) &addr,
  36.                      sizeof(addr)) < 0) {
  37.                perror("sendto");
  38.                exit(1);
  39.           }
  40.           sleep(1);
  41.      }
  42. }
复制代码
谢谢了先

论坛徽章:
11
未羊
日期:2013-12-16 12:45:4615-16赛季CBA联赛之青岛
日期:2016-04-11 19:17:4715-16赛季CBA联赛之广夏
日期:2016-04-06 16:34:012015亚冠之卡尔希纳萨夫
日期:2015-11-10 10:04:522015亚冠之大阪钢巴
日期:2015-07-30 18:29:402015亚冠之城南
日期:2015-06-15 17:56:392015亚冠之卡尔希纳萨夫
日期:2015-05-15 15:19:272015亚冠之山东鲁能
日期:2015-05-14 12:38:13金牛座
日期:2014-12-04 15:34:06子鼠
日期:2014-10-16 13:40:4715-16赛季CBA联赛之八一
日期:2016-07-22 09:41:40
2 [报告]
发表于 2011-09-08 11:53 |只看该作者
没玩过多播, mark一把

论坛徽章:
0
3 [报告]
发表于 2011-09-08 13:22 |只看该作者
多播?看看

论坛徽章:
1
黑曼巴
日期:2020-02-27 22:54:26
4 [报告]
发表于 2011-09-08 14:45 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
1
黑曼巴
日期:2020-02-27 22:54:26
5 [报告]
发表于 2011-09-08 14:48 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
6 [报告]
发表于 2011-09-08 16:20 |只看该作者
本帖最后由 redice 于 2011-09-08 16:30 编辑
楼主,服务器段的bind的那个地址应该是bind到组播ip
addr.sin_addr.s_addr=htonl(INADDR_ANY); /* N.B.: d ...
c/unix 发表于 2011-09-08 14:45



这个貌似是不能bind到组播地址的,因为要监听的组播地址并不是网卡上的一个地址,只需要加入到组播组就可以收到组播组的数据

另外问题解决了,是iptables的问题,firmwall挡掉了多播包,把filter规则刷掉就可以了,谢谢了,暂时结贴
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP