免费注册 查看新帖 |

Chinaunix

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

Socket多播收包的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-08 12:21 |只看该作者 |倒序浏览
这样一段多播发送接收的代码,看起来没有问题,发送方的包可以抓到,但是接收方没有任何反应,请教一下高人问题出在哪里,gcc版本4.4.0, Fedora 11

Server启动以后用netstat没看到port 12345

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="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. }
复制代码
谢谢了先

论坛徽章:
0
2 [报告]
发表于 2011-09-08 16:27 |只看该作者
问题解决了,fedora11主机iptables的问题,刷掉filter规则就可以了,暂时结贴,谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP