recvfrom() 返回缓冲区的大小而不是读取的字节数
recvfrom() is returning size of buffer instead of number of bytes read
在准备我第一次编写 UDP 代码时,我正在尝试从 here 复制并稍微修改的一些示例客户端和服务器代码。一切似乎都在工作,除了 recvfrom() 返回的值始终是缓冲区的大小而不是读取的字节数(如果我更改我的缓冲区大小并重新编译,报告的字节接收更改以匹配新的缓冲区大小虽然发送的字节在每次测试中都是相同的 10 个字节)。
有没有人看到这段代码中有任何错误可以解释问题(为简洁起见,此处删除了一些错误检查)?如果相关,我正在 Macbook Pro 运行 Yosemite 10.10.5:[=12 的终端 window 中的 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);
}
}
recvfrom
当缓冲区不够大时,将数据报截断到缓冲区的大小。
recvfrom
returns 缓冲区大小这一事实意味着您的缓冲区大小不够大,请尝试将其增加到例如 65535 字节 - 最大理论 UDP 数据报大小。
在准备我第一次编写 UDP 代码时,我正在尝试从 here 复制并稍微修改的一些示例客户端和服务器代码。一切似乎都在工作,除了 recvfrom() 返回的值始终是缓冲区的大小而不是读取的字节数(如果我更改我的缓冲区大小并重新编译,报告的字节接收更改以匹配新的缓冲区大小虽然发送的字节在每次测试中都是相同的 10 个字节)。
有没有人看到这段代码中有任何错误可以解释问题(为简洁起见,此处删除了一些错误检查)?如果相关,我正在 Macbook Pro 运行 Yosemite 10.10.5:[=12 的终端 window 中的 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);
}
}
recvfrom
当缓冲区不够大时,将数据报截断到缓冲区的大小。
recvfrom
returns 缓冲区大小这一事实意味着您的缓冲区大小不够大,请尝试将其增加到例如 65535 字节 - 最大理论 UDP 数据报大小。