gpt4 book ai didi

c - recvfrom() 返回缓冲区的大小而不是读取的字节数

转载 作者:行者123 更新时间:2023-11-30 15:06:25 25 4
gpt4 key购买 nike

在准备第一次编码 UDP 时,我正在尝试一些从 here 复制并稍微修改过的示例客户端和服务器代码。 。一切似乎都正常,除了由 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);
}
}

最佳答案

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

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

关于c - recvfrom() 返回缓冲区的大小而不是读取的字节数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39023433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com