gpt4 book ai didi

c - 套接字连接突然关闭,代码为 141

转载 作者:太空狗 更新时间:2023-10-29 15:58:32 25 4
gpt4 key购买 nike

我想做的是连接到远程服务器,从本地机器上的文件中读取内容并将其发送到服务器。然后捕获服务器响应并保存。我将 GET 命令放在一个文本文件中,并试图获得相同的结果。这是代码的一部分。我正在使用套接字和 C 来执行此操作。

if ( inet_pton(AF_INET,ip, &(nc_args->destaddr.sin_addr.s_addr)) <= 0 )
printf("\n\t\t inet_pton error");


if (connect(sockfd, (struct sockaddr *) &nc_args->destaddr, sizeof(&nc_args->destaddr)) < 0)
{
printf("\n\t\t Connection error");
exit(1);
}
puts("\n\t\t Connection successful to ...");

// file parameter is taken from command line and passéd to this function

fp = fopen(file,"rb");
if ( fp == NULL)
{
printf("\n\t\t File not found");
exit(3);
}

else
{
printf("\n\t\t Found file %s\n", file);

fseek(fp, 0, SEEK_END);
file_size = ftell(fp);
rewind(fp);

//allocate memory to the buffer dynamically

buffer = (char*) malloc (sizeof(char)*file_size);
if (buffer == NULL) {fputs ("Memory error",stderr); exit (2);}
for (i=0 ; i<sizeof(buffer); i++)
{
printf("\n\t\t %s", buffer);
}
printf("\n\t\t File contains %ld bytes!\n", file_size);
printf("\n\t\t Sending the file now");
}


while (1)
{
bytes_read = fread(buffer,1, file_size, fp);
printf("\n\t\t The bytes read is %zd", bytes_read);
if (bytes_read == 0) // We're done reading from the file
{
printf("\n\t\t The bytes read is %zd", bytes_read);
break;
}
if (bytes_read < 0)
{
printf("\n\t\t ERROR reading from file");
}

void *p = buffer;

while (bytes_read > 0)
{
ssize_t bytes_written = send(sockfd, buffer, bytes_read,0);
if (bytes_written <= 0)
{
printf("\n\t\t ERROR writing to socket\n");
}
bytes_read -= bytes_written;
p += bytes_written;
printf("\n\t\t Bytes %zd written", bytes_written);
}
}

printf("\n\n\t\t Sending complete.");

这里发生的事情是我收到消息“连接成功”,然后显示“正在发送文件”,然后程序意外退出。如果我回声$?我得到 141 作为退出代码。我正在尝试从我的服务器连接到工作中的不同服务器并获得结果。这两个可以正确通信,我可以毫无问题地从命令行运行 GET 命令。它只是不能从代码中工作。有人可以告诉我可能是什么问题吗?

最佳答案

在 Linux 上,可能还有其他 Unix,返回码对进程接收到的信号进行编码。这里是 141 - 128 所以 13 对应于 SIGPIPE

如果您不希望发出该信号,因为您捕获了 send 的错误返回,无论如何,在 Linux 上,您可以在 sendflags 参数中使用 MSG_NOSIGNAL 来抑制该信号。在其他平台上,您可能必须编写更复杂的信号处理程序来处理这种情况。

关于c - 套接字连接突然关闭,代码为 141,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18880606/

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