clnt_generic.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* clnt_generic.c - generic client creation */
  2. /* Copyright 1989-2000 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /* @(#)clnt_generic.c 2.1 87/11/04 3.9 RPCSRC */
  5. /*
  6.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  7.  * unrestricted use provided that this legend is included on all tape
  8.  * media and as a part of the software program in whole or part.  Users
  9.  * may copy or modify Sun RPC without charge, but are not authorized
  10.  * to license or distribute it to anyone else except as part of a product or
  11.  * program developed by the user.
  12.  *
  13.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  14.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  16.  *
  17.  * Sun RPC is provided with no support and without any obligation on the
  18.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  19.  * modification or enhancement.
  20.  *
  21.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  22.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  23.  * OR ANY PART THEREOF.
  24.  *
  25.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  26.  * or profits or other special, indirect and consequential damages, even if
  27.  * Sun has been advised of the possibility of such damages.
  28.  *
  29.  * Sun Microsystems, Inc.
  30.  * 2550 Garcia Avenue
  31.  * Mountain View, California  94043
  32.  */
  33. #if !defined(lint) && defined(SCCSIDS)
  34. /* static char sccsid[] = "@(#)clnt_generic.c 1.4 87/08/11 (C) 1987 SMI"; */
  35. #endif
  36. /*
  37.  * Copyright (C) 1987, Sun Microsystems, Inc.
  38.  */
  39. /*
  40. modification history
  41. --------------------
  42. 01i,18apr00,ham  fixed compilation warnings.
  43. 01h,11aug93,jmm  Changed ioctl.h and socket.h to sys/ioctl.h and sys/socket.h
  44. 01g,26may92,rrr  the tree shuffle
  45. 01f,04oct91,rrr  passed through the ansification filter
  46.   -changed includes to have absolute path from h/
  47.   -changed copyright notice
  48. 01e,01apr91,elh   added clnt_genericInclude.
  49. 01d,25oct90,dnw   removed include of utime.h.
  50. 01c,10may90,dnw   changed taskModuleList->rpccreateerr to rpccreateerr macro
  51. 01b,19apr90,hjb   de-linted.
  52. 01a,11jul89,hjb   first VxWorks version for RPC 4.0 upgrade
  53. */
  54. #include "rpc/rpc.h"
  55. #include "sys/socket.h"
  56. #include "vxWorks.h"
  57. #include "string.h"
  58. #include "memLib.h"
  59. #include "rpc/rpcGbl.h"
  60. #include "inetLib.h"
  61. #include "hostLib.h"
  62. #ifndef CLSET_TIMEOUT
  63. #define CLSET_TIMEOUT 1
  64. #endif
  65. void clnt_genericInclude ()
  66.     {
  67.     }
  68. /*
  69.  * Generic client creation: takes (hostname, program-number, protocol) and
  70.  * returns client handle. Default options are set, which the user can
  71.  * change using the rpc equivalent of ioctl()'s.
  72.  */
  73. CLIENT *
  74. clnt_create(hostname, prog, vers, proto)
  75. char *hostname;
  76. unsigned prog;
  77. unsigned vers;
  78. char *proto;
  79. {
  80. int h;
  81. struct sockaddr_in sin;
  82. int sock;
  83. struct timeval tv;
  84. CLIENT *client;
  85. if (((h = hostGetByName (hostname)) == ERROR) &&
  86.     ((h = (int) inet_addr (hostname)) == ERROR))
  87.     {
  88.     rpc_createerr.cf_stat = RPC_UNKNOWNHOST;
  89.     return (NULL);
  90.     }
  91. sin.sin_family = AF_INET;
  92. sin.sin_port = 0;
  93. bzero(sin.sin_zero, sizeof(sin.sin_zero));
  94. sin.sin_addr.s_addr = h;
  95. sock = RPC_ANYSOCK;
  96. if (strcmp (proto, "udp") == 0)
  97.     {
  98.     tv.tv_sec = 5;
  99.     tv.tv_usec = 0;
  100.     client = clntudp_create(&sin, (u_long)prog, (u_long)vers,
  101.     tv, &sock);
  102.     if (client == NULL)
  103.     return (NULL);
  104.     }
  105. else if (strcmp (proto, "tcp") == 0)
  106.     {
  107.     client = clnttcp_create(&sin, (u_long)prog, (u_long)vers,
  108.     &sock, 0, 0);
  109.     if (client == NULL)
  110.     return (NULL);
  111.     }
  112. else
  113.     {
  114.     rpc_createerr.cf_stat = RPC_SYSTEMERROR;
  115.     return (NULL);
  116.     }
  117. return (client);
  118. }