mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
a44d23932d
1998-03-27 22:46 Ulrich Drepper <drepper@cygnus.com> * Rules: Allow Makefiles to specify test-static for tests which cannot be linked dynamically. * math/Makefile: Move atest-exp, atest-sincos, atest-exp2 to tests-static. * libc.map: Add __nss_passwd_lookup, __nss_group_lookup, __nss_next. * misc/error.c: Pretty print. 1998-03-27 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makerules (libc_nonshared-name): Remove variable. (installed-libcs): Use libc-name instead. ($(inst_libdir)/libc.so): Likewise. Remove explicit reference to dynamic linker. * Makeconfig (link-libc): Link against libc_nonshared.a instead of libc.a. Remove explicit reference to dynamic linker. 1998-03-27 Ulrich Drepper <drepper@cygnus.com> * iconvdata/iso8859-1.c (gconv): Add cast to assignment from char to wchar_t. * iconv/iconv_prog.c: Correctly test for write failure. * iconvdata/Makefile: Add rules for EUC-KR, UHC, and JOHAB conversions. * iconvdata/gconv-modules: Likewise. * iconvdata/euckr.c: New file. * iconvdata/johab.c: New file. * iconvdata/ksc5601.c: New file. * iconvdata/ksc5601.h: New file. * iconvdata/uhc.c: New file. Contributed by Jungshik Shin <jshin@pantheon.yale.edu>. * libio/fileops.c (_IO_file_fopen): Interpret x flag to fopen. * stdio/fopen.c: Correct handling of 'x' flag. Reported by Jason M. Petry <jason@ps.ohio-state.edu>. 1998-03-27 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sunrpc/rpc/key_prot.h: Prevent warning by unknown pragma ident. * sunrpc/rpcsvc/key_prot.x: Likewise. * sunrpc/key_prot.c: Likewise. 1998-03-27 13:49 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/bits/string.h: Correct things which never worked. * sysdeps/i386/i486/bits/string.h: Add clobber marks. Patches by Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>. 1998-03-27 Ulrich Drepper <drepper@cygnus.com> * intl/textdomain.c [_LIBC]: Define strdup only if not yet defined. Reported by Thorsten Kukuk.
164 lines
3.7 KiB
C
164 lines
3.7 KiB
C
/*
|
|
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
|
* unrestricted use provided that this legend is included on all tape
|
|
* media and as a part of the software program in whole or part. Users
|
|
* may copy or modify Sun RPC without charge, but are not authorized
|
|
* to license or distribute it to anyone else except as part of a product or
|
|
* program developed by the user.
|
|
*
|
|
* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
|
|
* WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
|
|
*
|
|
* Sun RPC is provided with no support and without any obligation on the
|
|
* part of Sun Microsystems, Inc. to assist in its use, correction,
|
|
* modification or enhancement.
|
|
*
|
|
* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
|
|
* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
|
|
* OR ANY PART THEREOF.
|
|
*
|
|
* In no event will Sun Microsystems, Inc. be liable for any lost revenue
|
|
* or profits or other special, indirect and consequential damages, even if
|
|
* Sun has been advised of the possibility of such damages.
|
|
*
|
|
* Sun Microsystems, Inc.
|
|
* 2550 Garcia Avenue
|
|
* Mountain View, California 94043
|
|
*/
|
|
#if 0
|
|
#pragma ident "@(#)key_prot.x 1.7 94/04/29 SMI"
|
|
#endif
|
|
|
|
/* Copyright (c) 1990, 1991 Sun Microsystems, Inc. */
|
|
|
|
#include "rpc/key_prot.h"
|
|
|
|
bool_t
|
|
xdr_keystatus (XDR * xdrs, keystatus * objp)
|
|
{
|
|
if (!xdr_enum (xdrs, (enum_t *) objp))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_keybuf (XDR * xdrs, keybuf objp)
|
|
{
|
|
if (!xdr_opaque (xdrs, objp, HEXKEYBYTES))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_netnamestr (XDR * xdrs, netnamestr * objp)
|
|
{
|
|
if (!xdr_string (xdrs, objp, MAXNETNAMELEN))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_cryptkeyarg (XDR * xdrs, cryptkeyarg * objp)
|
|
{
|
|
if (!xdr_netnamestr (xdrs, &objp->remotename))
|
|
return FALSE;
|
|
|
|
if (!xdr_des_block (xdrs, &objp->deskey))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_cryptkeyarg2 (XDR * xdrs, cryptkeyarg2 * objp)
|
|
{
|
|
if (!xdr_netnamestr (xdrs, &objp->remotename))
|
|
return FALSE;
|
|
if (!xdr_netobj (xdrs, &objp->remotekey))
|
|
return FALSE;
|
|
if (!xdr_des_block (xdrs, &objp->deskey))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_cryptkeyres (XDR * xdrs, cryptkeyres * objp)
|
|
{
|
|
if (!xdr_keystatus (xdrs, &objp->status))
|
|
return FALSE;
|
|
switch (objp->status)
|
|
{
|
|
case KEY_SUCCESS:
|
|
if (!xdr_des_block (xdrs, &objp->cryptkeyres_u.deskey))
|
|
return FALSE;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_unixcred (XDR * xdrs, unixcred * objp)
|
|
{
|
|
if (!xdr_u_int (xdrs, &objp->uid))
|
|
return FALSE;
|
|
if (!xdr_u_int (xdrs, &objp->gid))
|
|
return FALSE;
|
|
if (!xdr_array (xdrs, (char **) &objp->gids.gids_val,
|
|
(u_int *) & objp->gids.gids_len, MAXGIDS,
|
|
sizeof (u_int), (xdrproc_t) xdr_u_int))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_getcredres (XDR * xdrs, getcredres * objp)
|
|
{
|
|
if (!xdr_keystatus (xdrs, &objp->status))
|
|
return FALSE;
|
|
switch (objp->status)
|
|
{
|
|
case KEY_SUCCESS:
|
|
if (!xdr_unixcred (xdrs, &objp->getcredres_u.cred))
|
|
return FALSE;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_key_netstarg (XDR * xdrs, key_netstarg * objp)
|
|
{
|
|
if (!xdr_keybuf (xdrs, objp->st_priv_key))
|
|
return FALSE;
|
|
if (!xdr_keybuf (xdrs, objp->st_pub_key))
|
|
return FALSE;
|
|
if (!xdr_netnamestr (xdrs, &objp->st_netname))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
bool_t
|
|
xdr_key_netstres (XDR * xdrs, key_netstres * objp)
|
|
{
|
|
if (!xdr_keystatus (xdrs, &objp->status))
|
|
return FALSE;
|
|
switch (objp->status)
|
|
{
|
|
case KEY_SUCCESS:
|
|
if (!xdr_key_netstarg (xdrs, &objp->key_netstres_u.knet))
|
|
return FALSE;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|