我尝试做的是连接到远程服务器,从本地计算机上的文件中读取内容并将其发送到服务器。然后捕获服务器响应并保存。我把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命令而不会出现问题。它只是没有从代码工作。有人能告诉我这个问题是什么吗?
答案 0 :(得分:8)
在Linux和其他Unix上,返回代码对进程收到的信号进行编码。这是141 - 128
所以13
对应SIGPIPE
。
如果您不希望因为捕获send
的错误返回而引发该信号,无论如何,在Linux上,您可以在MSG_NOSIGNAL
参数中使用flags
send
1}}来抑制那个信号。在其他平台上,您可能需要编写更复杂的信号处理程序来处理这种情况。
答案 1 :(得分:0)
sizeof(&nc_args->destaddr)
传递给connect
是错误的。它需要地址的大小,而不是指向地址的指针的大小。
这个循环:
for (i=0 ; i<sizeof(buffer); i++)
{
printf("\n\t\t %s", buffer);
}
令人费解。 buffer
是一个指针,正如我们从malloc
返回的vlue分配时所看到的那样。因此,它的大小分别为32位和64位架构上的4或8字节;与它所指向的malloc'ed对象的大小无关。循环运行4或8次,每次打印......同样的事情。为什么呢?