home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume13 / rpc3.9 / part02 / clnt_simple.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-27  |  3.4 KB  |  114 lines

  1. /* @(#)clnt_simple.c    1.1 87/11/04 3.9 RPCSRC */
  2. /*
  3.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  4.  * unrestricted use provided that this legend is included on all tape
  5.  * media and as a part of the software program in whole or part.  Users
  6.  * may copy or modify Sun RPC without charge, but are not authorized
  7.  * to license or distribute it to anyone else except as part of a product or
  8.  * program developed by the user.
  9.  * 
  10.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  11.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  12.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  13.  * 
  14.  * Sun RPC is provided with no support and without any obligation on the
  15.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  16.  * modification or enhancement.
  17.  * 
  18.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  19.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  20.  * OR ANY PART THEREOF.
  21.  * 
  22.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  23.  * or profits or other special, indirect and consequential damages, even if
  24.  * Sun has been advised of the possibility of such damages.
  25.  * 
  26.  * Sun Microsystems, Inc.
  27.  * 2550 Garcia Avenue
  28.  * Mountain View, California  94043
  29.  */
  30. #if !defined(lint) && defined(SCCSIDS)
  31. static char sccsid[] = "@(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";
  32. #endif
  33.  
  34. /* 
  35.  * clnt_simple.c
  36.  * Simplified front end to rpc.
  37.  *
  38.  * Copyright (C) 1984, Sun Microsystems, Inc.
  39.  */
  40.  
  41. #include <stdio.h>
  42. #include <rpc/rpc.h>
  43. #include <sys/socket.h>
  44. #include <sys/time.h>
  45. #include <netdb.h>
  46. #include <strings.h>
  47.  
  48. static struct callrpc_private {
  49.     CLIENT    *client;
  50.     int    socket;
  51.     int    oldprognum, oldversnum, valid;
  52.     char    *oldhost;
  53. } *callrpc_private;
  54.  
  55. callrpc(host, prognum, versnum, procnum, inproc, in, outproc, out)
  56.     char *host;
  57.     xdrproc_t inproc, outproc;
  58.     char *in, *out;
  59. {
  60.     register struct callrpc_private *crp = callrpc_private;
  61.     struct sockaddr_in server_addr;
  62.     enum clnt_stat clnt_stat;
  63.     struct hostent *hp;
  64.     struct timeval timeout, tottimeout;
  65.  
  66.     if (crp == 0) {
  67.         crp = (struct callrpc_private *)calloc(1, sizeof (*crp));
  68.         if (crp == 0)
  69.             return (0);
  70.         callrpc_private = crp;
  71.     }
  72.     if (crp->oldhost == NULL) {
  73.         crp->oldhost = malloc(256);
  74.         crp->oldhost[0] = 0;
  75.         crp->socket = RPC_ANYSOCK;
  76.     }
  77.     if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
  78.         && strcmp(crp->oldhost, host) == 0) {
  79.         /* reuse old client */        
  80.     } else {
  81.         crp->valid = 0;
  82.         (void)close(crp->socket);
  83.         crp->socket = RPC_ANYSOCK;
  84.         if (crp->client) {
  85.             clnt_destroy(crp->client);
  86.             crp->client = NULL;
  87.         }
  88.         if ((hp = gethostbyname(host)) == NULL)
  89.             return ((int) RPC_UNKNOWNHOST);
  90.         timeout.tv_usec = 0;
  91.         timeout.tv_sec = 5;
  92.         bcopy(hp->h_addr, (char *)&server_addr.sin_addr, hp->h_length);
  93.         server_addr.sin_family = AF_INET;
  94.         server_addr.sin_port =  0;
  95.         if ((crp->client = clntudp_create(&server_addr, (u_long)prognum,
  96.             (u_long)versnum, timeout, &crp->socket)) == NULL)
  97.             return ((int) rpc_createerr.cf_stat);
  98.         crp->valid = 1;
  99.         crp->oldprognum = prognum;
  100.         crp->oldversnum = versnum;
  101.         (void) strcpy(crp->oldhost, host);
  102.     }
  103.     tottimeout.tv_sec = 25;
  104.     tottimeout.tv_usec = 0;
  105.     clnt_stat = clnt_call(crp->client, procnum, inproc, in,
  106.         outproc, out, tottimeout);
  107.     /* 
  108.      * if call failed, empty cache
  109.      */
  110.     if (clnt_stat != RPC_SUCCESS)
  111.         crp->valid = 0;
  112.     return ((int) clnt_stat);
  113. }
  114.