sockaddr

  • 网络套接字地址
sockaddrsockaddr
  1. I bind this sockaddr structure to the socket using the bind call , then place the server socket into the listening state .

    我们使用bind调用将这个sockaddr结构绑定到socket上,然后将服务器套接字设置成监听状态。

  2. In the client , I create an SCTP socket , then create a sockaddr structure containing the endpoint to which it will connect .

    在客户机中,我们首先创建了一个SCTP套接字,然后创建了一个sockaddr结构,其中包含了将要连接的端点。

  3. I then create a sockaddr structure , specifying that connections are permitted from any local interface ( using the wildcard address INADDR_ANY ) .

    然后创建一个sockaddr结构,指定这个连接可以从任何本地接口上创建(使用通配符地址INADDRANY)。

  4. For example , this problem occurs if the length of an argument that is a SOCKADDR structure is smaller than the sizeof ( SOCKADDR ) value .

    是例如如果SOCKADDR结构的参数的长度小于sizeof(SOCKADDR)值,则会出现此问题。