📄 xdr_mem.c
字号:
#ifndef lintstatic char *sccsid = "@(#)xdr_mem.c 4.1 ULTRIX 7/3/90";#endif lint/************************************************************************ * * * Copyright (c) 1986 by * * Digital Equipment Corporation, Maynard, MA * * All rights reserved. * * * * This software is furnished under a license and may be used and * * copied only in accordance with the terms of such license and * * with the inclusion of the above copyright notice. This * * software or any other copies thereof may not be provided or * * otherwise made available to any other person. No title to and * * ownership of the software is hereby transferred. * * * * This software is derived from software received from the * * University of California, Berkeley, and from Bell * * Laboratories. Use, duplication, or disclosure is subject to * * restrictions under license agreements with University of * * California and with AT&T. * * * * The information in this software is subject to change without * * notice and should not be construed as a commitment by Digital * * Equipment Corporation. * * * * Digital assumes no responsibility for the use or reliability * * of its software on equipment which is not supplied by Digital. * * * ************************************************************************//* * Portions of this software have been licensed to * Digital Equipment Company, Maynard, MA. * Copyright (c) 1986 Sun Microsystems, Inc. ALL RIGHTS RESERVED. *//* * xdr_mem.h, XDR implementation using memory buffers. * * * If you have some data to be interpreted as external data representation * or to be converted to external data representation in a memory buffer, * then this is the package for you. * */#ifdef KERNEL#include "../h/param.h"#include "../rpc/types.h"#include "../rpc/xdr.h"#include "../netinet/in.h"#else#include <rpc/types.h>#include <rpc/xdr.h>#include <netinet/in.h>#endifstatic bool_t xdrmem_getlong();static bool_t xdrmem_putlong();static bool_t xdrmem_getbytes();static bool_t xdrmem_putbytes();static u_int xdrmem_getpos();static bool_t xdrmem_setpos();static long * xdrmem_inline();static void xdrmem_destroy();static struct xdr_ops xdrmem_ops = { xdrmem_getlong, xdrmem_putlong, xdrmem_getbytes, xdrmem_putbytes, xdrmem_getpos, xdrmem_setpos, xdrmem_inline, xdrmem_destroy};/* * The procedure xdrmem_create initializes a stream descriptor for a * memory buffer. */voidxdrmem_create(xdrs, addr, size, op) register XDR *xdrs; caddr_t addr; u_int size; enum xdr_op op;{ xdrs->x_op = op; xdrs->x_ops = &xdrmem_ops; xdrs->x_private = xdrs->x_base = addr; xdrs->x_handy = size;}static voidxdrmem_destroy(/*xdrs*/) /*XDR *xdrs;*/{}static bool_txdrmem_getlong(xdrs, lp) register XDR *xdrs; long *lp;{ if ((xdrs->x_handy -= sizeof(long)) < 0) return (FALSE); *lp = ntohl(*((long *)(xdrs->x_private))); xdrs->x_private += sizeof(long); return (TRUE);}static bool_txdrmem_putlong(xdrs, lp) register XDR *xdrs; long *lp;{ if ((xdrs->x_handy -= sizeof(long)) < 0) return (FALSE); *(long *)xdrs->x_private = htonl(*lp); xdrs->x_private += sizeof(long); return (TRUE);}static bool_txdrmem_getbytes(xdrs, addr, len) register XDR *xdrs; caddr_t addr; register u_int len;{ if ((xdrs->x_handy -= len) < 0) return (FALSE); bcopy(xdrs->x_private, addr, len); xdrs->x_private += len; return (TRUE);}static bool_txdrmem_putbytes(xdrs, addr, len) register XDR *xdrs; caddr_t addr; register u_int len;{ if ((xdrs->x_handy -= len) < 0) return (FALSE); bcopy(addr, xdrs->x_private, len); xdrs->x_private += len; return (TRUE);}static u_intxdrmem_getpos(xdrs) register XDR *xdrs;{ return ((u_int)xdrs->x_private - (u_int)xdrs->x_base);}static bool_txdrmem_setpos(xdrs, pos) register XDR *xdrs; u_int pos;{ register caddr_t newaddr = xdrs->x_base + pos; register caddr_t lastaddr = xdrs->x_private + xdrs->x_handy; if ((long)newaddr > (long)lastaddr) return (FALSE); xdrs->x_private = newaddr; xdrs->x_handy = (int)lastaddr - (int)newaddr; return (TRUE);}static long *xdrmem_inline(xdrs, len) register XDR *xdrs; int len;{ long *buf = 0; if (xdrs->x_handy >= len) { xdrs->x_handy -= len; buf = (long *) xdrs->x_private; xdrs->x_private += len; } return (buf);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -