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

VxWorks

开发平台:

C/C++

  1. /* authunix_pro.c - XDR for UNIX style authentication */
  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,26jun90,hjb  removed sccsid[].
  43. 01b,11nov87,jlf  added wrs copyright, title, mod history, etc.
  44.  changed name from authunix_prot.c to authunix_pro.c, to
  45.       work under sys-V.
  46. 01a,01nov87,rdc  first VxWorks version
  47. */
  48. #ifndef lint
  49. /* static char sccsid[] = "@(#)authunix_prot.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  50. #endif
  51. /*
  52.  * authunix_prot.c
  53.  * XDR for UNIX style authentication parameters for RPC
  54.  *
  55.  */
  56. #include "rpc/rpctypes.h"
  57. #include "rpc/xdr.h"
  58. #include "rpc/auth.h"
  59. #include "rpc/auth_unix.h"
  60. #include "vxWorks.h"
  61. /*
  62.  * XDR for unix authentication parameters.
  63.  */
  64. bool_t
  65. xdr_authunix_parms(xdrs, p)
  66. register XDR *xdrs;
  67. register struct authunix_parms *p;
  68. {
  69. if (xdr_u_long(xdrs, &(p->aup_time))
  70.     && xdr_string(xdrs, &(p->aup_machname), MAX_MACHINE_NAME)
  71.     && xdr_int(xdrs, &(p->aup_uid))
  72.     && xdr_int(xdrs, &(p->aup_gid))
  73.     && xdr_array(xdrs, (caddr_t *)&(p->aup_gids),
  74.     &(p->aup_len), NGRPS, sizeof(int), xdr_int) ) {
  75. return (TRUE);
  76. }
  77. return (FALSE);
  78. }