带close()套接字的错误文件描述符(c ++)

时间:2010-04-20 12:12:06

标签: c++ sockets file-descriptor

当我的程序无法连接其他主机时,我的文件描述符用完了。 close()系统调用不起作用,打开套接字的数量增加。我可以用

来表达
  

cat / proc / sys / fs / file-nr

从控制台打印:

  

连接:无主机路由

     

close:错误的文件描述符

     

连接:无主机路由

     

close:错误的文件描述符

     

...

代码:

#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <string.h>
#include <iostream>
using namespace std;

#define PORT            1238
#define MESSAGE         "Yow!!! Are we having fun yet?!?"
#define SERVERHOST      "192.168.9.101"

void
write_to_server (int filedes)
{
  int nbytes;

  nbytes = write (filedes, MESSAGE, strlen (MESSAGE) + 1);
  if (nbytes < 0)
    {
      perror ("write");
    }
}

void
init_sockaddr (struct sockaddr_in *name,
               const char *hostname,
               uint16_t port)
{
  struct hostent *hostinfo;

  name->sin_family = AF_INET;
  name->sin_port = htons (port);
  hostinfo = gethostbyname (hostname);
  if (hostinfo == NULL)
    {
      fprintf (stderr, "Unknown host %s.\n", hostname);
    }
  name->sin_addr = *(struct in_addr *) hostinfo->h_addr;
}

int main() 
{
 for (;;)
 {
  sleep(1);
  int sock;
  struct sockaddr_in servername;

  /* Create the socket. */
  sock = socket (PF_INET, SOCK_STREAM, 0);
  if (sock < 0)
  {
   perror ("socket (client)");
  }

  /* Connect to the server. */
  init_sockaddr (&servername, SERVERHOST, PORT);
  if (0 > connect (sock,
    (struct sockaddr *) &servername,
    sizeof (servername)))
  {
   perror ("connect");
   sock = -1;
  }

  /* Send data to the server. */
  if (sock > -1)
   write_to_server (sock);
  if (close (sock) != 0)
   perror("close");
 }
return 0;
}

修正:

  if (0 > connect (sock,
    (struct sockaddr *) &servername,
    sizeof (servername)))
  {
   perror ("connect");
  }

  else
   write_to_server (sock);

  if (close (sock) != 0)
   perror("close");

1 个答案:

答案 0 :(得分:11)

看起来问题出在你的程序结构中。每次通过无限循环,您都在创建一个新的套接字。我建议将其移出循环并重新使用它。

如果你现在想要修改你现在的方式,请在你现在拥有的“connect”失败if语句中使用close。描述符由“socket”调用分配,仅与“connect”调用相关联。通过将'sock'变量设置为-1,您将丢弃'socket'分配的描述符。呼叫关闭,然后将其设置为-1,您应该设置。