xref: /dragonfly/lib/libc/rpc/key_prot_xdr.c (revision e1acdbad)
1 /*
2  * Please do not edit this file.
3  * It was generated using rpcgen.
4  */
5 /* $DragonFly: src/lib/libc/rpc/key_prot_xdr.c,v 1.2 2004/10/25 19:38:01 drhodus Exp $								*/
6 
7 #include <rpc/key_prot.h>
8 /*
9  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
10  * unrestricted use provided that this legend is included on all tape
11  * media and as a part of the software program in whole or part.  Users
12  * may copy or modify Sun RPC without charge, but are not authorized
13  * to license or distribute it to anyone else except as part of a product or
14  * program developed by the user.
15  *
16  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
17  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
19  *
20  * Sun RPC is provided with no support and without any obligation on the
21  * part of Sun Microsystems, Inc. to assist in its use, correction,
22  * modification or enhancement.
23  *
24  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
25  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
26  * OR ANY PART THEREOF.
27  *
28  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
29  * or profits or other special, indirect and consequential damages, even if
30  * Sun has been advised of the possibility of such damages.
31  *
32  * Sun Microsystems, Inc.
33  * 2550 Garcia Avenue
34  * Mountain View, California  94043
35  */
36 #pragma ident	"@(#)key_prot.x	1.7	94/04/29 SMI"
37 
38 /* Copyright (c)  1990, 1991 Sun Microsystems, Inc. */
39 
40 /*
41  * Compiled from key_prot.x using rpcgen.
42  * DO NOT EDIT THIS FILE!
43  * This is NOT source code!
44  */
45 
46 bool_t
47 xdr_keystatus(XDR *xdrs, keystatus *objp)
48 {
49 
50 	if (!xdr_enum(xdrs, (enum_t *)objp))
51 		return (FALSE);
52 	return (TRUE);
53 }
54 
55 bool_t
56 xdr_keybuf(XDR *xdrs, keybuf objp)
57 {
58 
59 	if (!xdr_opaque(xdrs, objp, HEXKEYBYTES))
60 		return (FALSE);
61 	return (TRUE);
62 }
63 
64 bool_t
65 xdr_netnamestr(XDR *xdrs, netnamestr *objp)
66 {
67 
68 	if (!xdr_string(xdrs, objp, MAXNETNAMELEN))
69 		return (FALSE);
70 	return (TRUE);
71 }
72 
73 bool_t
74 xdr_cryptkeyarg(XDR *xdrs, cryptkeyarg *objp)
75 {
76 
77 	if (!xdr_netnamestr(xdrs, &objp->remotename))
78 		return (FALSE);
79 	if (!xdr_des_block(xdrs, &objp->deskey))
80 		return (FALSE);
81 	return (TRUE);
82 }
83 
84 bool_t
85 xdr_cryptkeyarg2(XDR *xdrs, cryptkeyarg2 *objp)
86 {
87 
88 	if (!xdr_netnamestr(xdrs, &objp->remotename))
89 		return (FALSE);
90 	if (!xdr_netobj(xdrs, &objp->remotekey))
91 		return (FALSE);
92 	if (!xdr_des_block(xdrs, &objp->deskey))
93 		return (FALSE);
94 	return (TRUE);
95 }
96 
97 bool_t
98 xdr_cryptkeyres(XDR *xdrs, cryptkeyres *objp)
99 {
100 
101 	if (!xdr_keystatus(xdrs, &objp->status))
102 		return (FALSE);
103 	switch (objp->status) {
104 	case KEY_SUCCESS:
105 		if (!xdr_des_block(xdrs, &objp->cryptkeyres_u.deskey))
106 			return (FALSE);
107 		break;
108 	}
109 	return (TRUE);
110 }
111 
112 bool_t
113 xdr_unixcred(XDR *xdrs, unixcred *objp)
114 {
115 
116 	if (!xdr_u_int(xdrs, &objp->uid))
117 		return (FALSE);
118 	if (!xdr_u_int(xdrs, &objp->gid))
119 		return (FALSE);
120 	if (!xdr_array(xdrs, (char **)&objp->gids.gids_val, (u_int *) &objp->gids.gids_len, MAXGIDS,
121 		sizeof (u_int), (xdrproc_t) xdr_u_int))
122 		return (FALSE);
123 	return (TRUE);
124 }
125 
126 bool_t
127 xdr_getcredres(XDR *xdrs, getcredres *objp)
128 {
129 
130 	if (!xdr_keystatus(xdrs, &objp->status))
131 		return (FALSE);
132 	switch (objp->status) {
133 	case KEY_SUCCESS:
134 		if (!xdr_unixcred(xdrs, &objp->getcredres_u.cred))
135 			return (FALSE);
136 		break;
137 	}
138 	return (TRUE);
139 }
140 
141 bool_t
142 xdr_key_netstarg(XDR *xdrs, key_netstarg *objp)
143 {
144 
145 	if (!xdr_keybuf(xdrs, objp->st_priv_key))
146 		return (FALSE);
147 	if (!xdr_keybuf(xdrs, objp->st_pub_key))
148 		return (FALSE);
149 	if (!xdr_netnamestr(xdrs, &objp->st_netname))
150 		return (FALSE);
151 	return (TRUE);
152 }
153 
154 bool_t
155 xdr_key_netstres(XDR *xdrs, key_netstres *objp)
156 {
157 
158 	if (!xdr_keystatus(xdrs, &objp->status))
159 		return (FALSE);
160 	switch (objp->status) {
161 	case KEY_SUCCESS:
162 		if (!xdr_key_netstarg(xdrs, &objp->key_netstres_u.knet))
163 			return (FALSE);
164 		break;
165 	}
166 	return (TRUE);
167 }
168