0

在准备我第一次编写 UDP 代码时,我正在尝试从这里复制和轻微修改的一些示例客户端和服务器代码。一切似乎都在工作,除了 recvfrom() 返回的值始终是缓冲区的大小而不是读取的字节数(如果我更改缓冲区大小并重新编译,报告的字节接收更改以匹配新的缓冲区大小虽然在每个测试中发送的字节都是相同的 10 个字节)。

是否有人在此代码中看到任何可以解释问题的错误(为简洁起见,此处删除了一些错误检查)?如果相关,我正在运行 Yosemite 10.10.5 的 Macbook Pro 上的终端窗口中的 bash 中编译和运行:

#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>

#define BUFLEN 1024
#define PORT 9930

int main(void) {
  struct sockaddr_in si_me, si_other;
  int s, i, slen=sizeof(si_other);
  int nrecv;
  char buf[BUFLEN];

  s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);

  memset((char *) &si_me, 0, sizeof(si_me));
  si_me.sin_family = AF_INET;
  si_me.sin_port = htons(PORT);
  si_me.sin_addr.s_addr = htonl(INADDR_ANY);
  bind(s, &si_me, sizeof(si_me));

  while (1) {
    nrecv = recvfrom(s, buf, BUFLEN, 0, &si_other, &slen);
    printf("Received packet from %s:%d\n%d bytes rec'd\n\n", 
           inet_ntoa(si_other.sin_addr), ntohs(si_other.sin_port), nrecv);
  }
}
4

1 回答 1

1

recvfrom当缓冲区不够大时,将数据报截断为缓冲区的大小。

返回缓冲区大小的事实recvfrom意味着您的缓冲区大小不够大,请尝试将其增加到 65535 字节 - 最大理论 UDP 数据报大小。

于 2016-08-18T17:02:47.753 回答