pmap_prot.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* pmap_prot.c - protocol for the local binder service, or pmap */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (c) 1987 Wind River Systems, Inc.
  6.  * Copyright (C) 1984, Sun Microsystems, Inc.
  7.  *
  8.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  9.  * unrestricted use provided that this legend is included on all tape
  10.  * media and as a part of the software program in whole or part.  Users
  11.  * may copy or modify Sun RPC without charge, but are not authorized
  12.  * to license or distribute it to anyone else except as part of a product or
  13.  * program developed by the user.
  14.  *
  15.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  16.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  17.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  18.  *
  19.  * Sun RPC is provided with no support and without any obligation on the
  20.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  21.  * modification or enhancement.
  22.  *
  23.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  24.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  25.  * OR ANY PART THEREOF.
  26.  *
  27.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  28.  * or profits or other special, indirect and consequential damages, even if
  29.  * Sun has been advised of the possibility of such damages.
  30.  *
  31.  * Sun Microsystems, Inc.
  32.  * 2550 Garcia Avenue
  33.  * Mountain View, California  94043
  34.  */
  35. /*
  36. modification history
  37. --------------------
  38. 01e,26may92,rrr  the tree shuffle
  39. 01d,04oct91,rrr  passed through the ansification filter
  40.   -changed includes to have absolute path from h/
  41.   -changed copyright notice
  42. 01c,27oct89,hjb   upgraded to 4.0
  43. 01b,11nov87,jlf   added wrs copyright, title, mod history, etc.
  44. 01a,01nov87,rdc   first VxWorks version
  45. */
  46. #ifndef lint
  47. /* static char sccsid[] = "@(#)pmap_prot.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  48. #endif
  49. /*
  50.  * pmap_prot.c
  51.  * Protocol for the local binder service, or pmap.
  52.  *
  53.  */
  54. #include "rpc/rpctypes.h"
  55. #include "rpc/xdr.h"
  56. #include "rpc/pmap_prot.h"
  57. #include "vxWorks.h"
  58. bool_t
  59. xdr_pmap(xdrs, regs)
  60. XDR *xdrs;
  61. struct pmap *regs;
  62. {
  63. if (xdr_u_long(xdrs, &regs->pm_prog) &&
  64. xdr_u_long(xdrs, &regs->pm_vers) &&
  65. xdr_u_long(xdrs, &regs->pm_prot))
  66. return (xdr_u_long(xdrs, &regs->pm_port));
  67. return (FALSE);
  68. }
  69. /* xdr_pmaplist () is now defined in pmap_prot2.c       4.0 */