summaryrefslogtreecommitdiff
path: root/ypserv/ypserv_xdr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ypserv/ypserv_xdr.c')
-rw-r--r--ypserv/ypserv_xdr.c111
1 files changed, 111 insertions, 0 deletions
diff --git a/ypserv/ypserv_xdr.c b/ypserv/ypserv_xdr.c
new file mode 100644
index 0000000..404295e
--- /dev/null
+++ b/ypserv/ypserv_xdr.c
@@ -0,0 +1,111 @@
+/* Copyright (C) 2014 Thorsten Kukuk
+ Author: Thorsten Kukuk <kukuk@suse.de>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
+
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rpc/rpc.h>
+#include "yp.h"
+
+xdr_ypall_cb_t xdr_ypall_cb;
+
+bool_t
+xdr_ypresp_maplist (XDR *xdrs, ypresp_maplist *objp)
+{
+ char **tp;
+
+ if (!xdr_ypstat (xdrs, &objp->status))
+ return FALSE;
+ /* Prevent gcc warning about alias violation. */
+ tp = (void *) &objp->list;
+ return xdr_pointer (xdrs, tp, sizeof (ypmaplist), (xdrproc_t) xdr_ypmaplist);
+}
+
+bool_t
+xdr_ypresp_all(XDR *xdrs, ypresp_all *objp)
+{
+ if (xdrs->x_op == XDR_ENCODE)
+ {
+ while (1)
+ {
+ if (xdr_bool(xdrs, &objp->more) == FALSE ||
+ xdr_ypresp_key_val(xdrs, &objp->ypresp_all_u.val) == FALSE)
+ {
+ if (xdr_ypall_cb.u.close != NULL)
+ (*(xdr_ypall_cb.u.close))(xdr_ypall_cb.data);
+
+ xdr_ypall_cb.data = NULL;
+
+ return FALSE;
+ }
+
+ if ((objp->ypresp_all_u.val.status != YP_TRUE) ||
+ (*xdr_ypall_cb.u.encode)(&objp->ypresp_all_u.val,
+ xdr_ypall_cb.data) != YP_TRUE)
+ {
+ objp->more = FALSE;
+
+ if (xdr_ypall_cb.u.close != NULL)
+ (*(xdr_ypall_cb.u.close))(xdr_ypall_cb.data);
+
+ xdr_ypall_cb.data = NULL;
+
+ if (!xdr_bool(xdrs, &objp->more))
+ return FALSE;
+
+ return TRUE;
+ }
+
+ }
+ }
+
+#ifdef NOTYET /* This code isn't needed in the server */
+ else if (xdrs->x_op == XDR_DECODE)
+ {
+ int more = 0;
+
+
+ while (1)
+ {
+ if (!xdr_bool(xdrs, &objp->more))
+ return FALSE;
+
+ switch (objp->more)
+ {
+ case TRUE:
+ if (!xdr_ypresp_key_val(xdrs, &objp->ypresp_all_u.val))
+ return FALSE;
+
+ if (more == 0)
+ more = (*xdr_ypall_callback->foreach.decoder)
+ (&objp->ypresp_all_u.val, xdr_ypall_callback->data);
+ break;
+
+ case FALSE:
+ return TRUE;
+
+ default:
+ return FALSE;
+ }
+ }
+ return FALSE;
+ }
+#endif
+
+ return TRUE;
+}