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

网络

开发平台:

Unix_Linux

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