2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
30 * Copyright (C) 1987, Sun Microsystems, Inc.
37 #include <sys/socket.h>
38 #include <sys/errno.h>
42 * Generic client creation: takes (hostname, program-number, protocol) and
43 * returns client handle. Default options are set, which the user can
44 * change using the rpc equivalent of ioctl()'s.
47 clnt_create (const char *hostname
, u_long prog
, u_long vers
,
50 struct hostent hostbuf
, *h
;
53 struct protoent protobuf
, *p
;
56 struct sockaddr_in sin
;
57 struct sockaddr_un sun
;
63 if (strcmp (proto
, "unix") == 0)
65 __bzero ((char *)&sun
, sizeof (sun
));
66 sun
.sun_family
= AF_UNIX
;
67 strcpy (sun
.sun_path
, hostname
);
69 client
= clntunix_create (&sun
, prog
, vers
, &sock
, 0, 0);
73 /* This is not wanted. This would disable the user from having
74 a timeout in the clnt_call() call. Only a call to cnlt_control()
75 by the user should set the timeout value. */
78 clnt_control (client
, CLSET_TIMEOUT
, (char *)&tv
);
84 hsttmpbuf
= __alloca (hstbuflen
);
85 while (__gethostbyname_r (hostname
, &hostbuf
, hsttmpbuf
, hstbuflen
,
88 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
90 get_rpc_createerr().cf_stat
= RPC_UNKNOWNHOST
;
95 /* Enlarge the buffer. */
97 hsttmpbuf
= __alloca (hstbuflen
);
100 if (h
->h_addrtype
!= AF_INET
)
103 * Only support INET for now
105 struct rpc_createerr
*ce
= &get_rpc_createerr ();
106 ce
->cf_stat
= RPC_SYSTEMERROR
;
107 ce
->cf_error
.re_errno
= EAFNOSUPPORT
;
110 sin
.sin_family
= h
->h_addrtype
;
112 __bzero (sin
.sin_zero
, sizeof (sin
.sin_zero
));
113 bcopy (h
->h_addr
, (char *) &sin
.sin_addr
, h
->h_length
);
116 prttmpbuf
= __alloca (prtbuflen
);
117 while (__getprotobyname_r (proto
, &protobuf
, prttmpbuf
, prtbuflen
, &p
) != 0
121 struct rpc_createerr
*ce
= &get_rpc_createerr ();
122 ce
->cf_stat
= RPC_UNKNOWNPROTO
;
123 ce
->cf_error
.re_errno
= EPFNOSUPPORT
;
128 /* Enlarge the buffer. */
130 prttmpbuf
= __alloca (prtbuflen
);
139 client
= clntudp_create (&sin
, prog
, vers
, tv
, &sock
);
145 /* This is not wanted. This would disable the user from having
146 a timeout in the clnt_call() call. Only a call to cnlt_control()
147 by the user should set the timeout value. */
149 clnt_control (client
, CLSET_TIMEOUT
, (char *)&tv
);
153 client
= clnttcp_create (&sin
, prog
, vers
, &sock
, 0, 0);
159 /* This is not wanted. This would disable the user from having
160 a timeout in the clnt_call() call. Only a call to cnlt_control()
161 by the user should set the timeout value. */
164 clnt_control (client
, CLSET_TIMEOUT
, (char *)&tv
);
169 struct rpc_createerr
*ce
= &get_rpc_createerr ();
170 ce
->cf_stat
= RPC_SYSTEMERROR
;
171 ce
->cf_error
.re_errno
= EPFNOSUPPORT
;