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

网络

开发平台:

Unix_Linux

  1. /* connectUDP.c - connectUDP */
  2. int connectsock(const char *host, const char *service,
  3. const char *transport);
  4. /*------------------------------------------------------------------------
  5.  * connectUDP - connect to a specified UDP service on a specified host
  6.  *------------------------------------------------------------------------
  7.  */
  8. int
  9. connectUDP(const char *host, const char *service )
  10. /*
  11.  * Arguments:
  12.  *      host    - name of host to which connection is desired
  13.  *      service - service associated with the desired port
  14.  */
  15. {
  16. return connectsock(host, service, "udp");
  17. }