从 UDP 套接字读取数据

发布于 2024-10-31 10:41:30 字数 803 浏览 0 评论 0原文

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

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 套接字一起工作..任何帮助将不胜感激

I use the following function to read from a file descriptor...

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

  int nread;

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

Following is the function that uses the above function

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);
}

They both work fine with TCP siocket but not with udp socket.. Any help would be appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青瓷清茶倾城歌 2024-11-07 10:41:30

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

在前面加上 UDP 的大小并没有多大意义 - UDP 会为您维护消息边界。因此,在 UDP 情况下,只需完全删除 plength 部分即可。

It's not clear exactly what your problem is, but if net_fd is a UDP socket, then the two cwrite() calls will create two UDP datagrams.

There isn't a great deal of point in prepending the size with UDP - UDP maintains the message boundaries for you. So in the UDP case, just remove the plength part entirely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文