从UDP套接字读取数据

时间:2011-04-09 05:12:56

标签: networking udp tcp

我使用以下函数从文件描述符中读取...

int cread(int fd, char *buf, int n){

  int nread;

  if((nread=read(fd, buf, n))<0){
    perror("Reading data");
    exit(1);
  }
  return nread;
}

以下是使用上述功能的功能

if(FD_ISSET(tap_fd, &rd_set)){
  /* data from tun/tap: just read it and write it to the network */

  nread = cread(tap_fd, buffer, BUFSIZE);

  tap2net++;
  do_debug("TAP2NET %lu: Read %d bytes from the tap interface\n", tap2net, nread);

  /* write length + packet */
  plength = htons(nread);
  nwrite = cwrite(net_fd, (char *)&plength, sizeof(plength));
  nwrite = cwrite(net_fd, buffer, nread);

  do_debug("TAP2NET %lu: Written %d bytes to the network\n", tap2net, nwrite);
}

它们都可以正常使用TCP siocket,但不能使用udp socket ..任何帮助都将不胜感激

1 个答案:

答案 0 :(得分:0)

目前尚不清楚您的问题究竟是什么,但如果net_fd是UDP套接字,则两个cwrite()调用将创建两个 UDP数据报。

使用UDP预先设置大小没有太大意义 - UDP会为您维护消息边界。因此,在UDP情况下,只需完全删除plength部分。