passiveTCP.c
上传用户:wei_4586
上传日期:2008-05-28
资源大小:18k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* passiveTCP.c - passiveTCP */
  2. int passivesock(const char *service, const char *transport,
  3. int qlen);
  4. /*------------------------------------------------------------------------
  5.  * passiveTCP - create a passive socket for use in a TCP server
  6.  *------------------------------------------------------------------------
  7.  */
  8. int
  9. passiveTCP(const char *service, int qlen)
  10. /*
  11.  * Arguments:
  12.  *      service - service associated with the desired port
  13.  *      qlen    - maximum server request queue length
  14.  */
  15. {
  16. return passivesock(service, "tcp", qlen);
  17. }