xref: /netbsd/usr.sbin/ypserv/common/ypresp_xdr.c (revision bf9ec67e)
1 /*	$NetBSD: ypresp_xdr.c,v 1.2 1997/10/13 03:42:33 lukem Exp $	*/
2 
3 /*
4  * This file was originally generated with rpcgen, then modified
5  * by Jason R. Thorpe <thorpej@NetBSD.ORG>.
6  */
7 
8 #include <sys/cdefs.h>
9 #ifndef lint
10 __RCSID("$NetBSD: ypresp_xdr.c,v 1.2 1997/10/13 03:42:33 lukem Exp $");
11 #endif
12 
13 #include <sys/types.h>
14 
15 #include <rpc/rpc.h>
16 #include <rpc/xdr.h>
17 #include <rpcsvc/yp_prot.h>
18 
19 #include "ypdef.h"
20 
21 bool_t
22 xdr_ypresp_xfr(xdrs, objp)
23 	XDR *xdrs;
24 	struct ypresp_xfr *objp;
25 {
26 
27 	if (!xdr_u_int(xdrs, &objp->transid))
28 		return FALSE;
29 
30 	if (!xdr_enum(xdrs, (enum_t *)&objp->xfrstat))
31 		return FALSE;
32 
33 	return TRUE;
34 }
35