mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
6259ec0d78
Wed Dec 11 01:04:30 1996 Ulrich Drepper <drepper@cygnus.com> Add NIS NSS implementation. * shlib-versions: Add versions for NIS libraries. * sysdeps/unix/inet/Subdirs: Add nis. * nis/Banner: New file. * nis/Makefile: New file. * nis/nss-nis.h: New file. * nis/yp_xdr.h: New file. * nis/ypclnt.h: New file. * nis/ypupdate_xdr.c: New file. * nis/nss_compat/compat-grp.c: New file. * nis/nss_compat/compat-pwd.c: New file. * nis/nss_compat/compat-spwd.c: New file. * nis/nss_nis/nis-alias.c: New file. * nis/nss_nis/nis-ethers.c: New file. * nis/nss_nis/nis-grp.c: New file. * nis/nss_nis/nis-hosts.c: New file. * nis/nss_nis/nis-netgrp.c: New file. * nis/nss_nis/nis-network.c: New file. * nis/nss_nis/nis-proto.c: New file. * nis/nss_nis/nis-publickey.c: New file. * nis/nss_nis/nis-pwd.c: New file. * nis/nss_nis/nis-rpc.c: New file. * nis/nss_nis/nis-service.c: New file. * nis/nss_nis/nis-spwd.c: New file. * nis/rpcsvc/yp.h: New file. * nis/rpcsvc/yp.x: New file. * nis/rpcsvc/yp_prot.h: New file. * nis/rpcsvc/ypclnt.h: New file. * nis/rpcsvc/ypupd.h: New file. * libio/_G_config.h: Define _G_HAVE_SYS_WAIT and _G_HAVE_PRINTF_FP. * locale/C-numeric.c: Update copyright. * locale/Makefile: Add rules to build libBrokenLocale. * locale/broken_cur_max.c: New file. * locale/mb_cur_max.c: Update copyright. (__ctype_get_mb_cur_max): Make function weak. * new-malloc/malloc.c: Correct copyright. * new-malloc/thread-m.h: Correct key handling. * shadow/lckpwdf.c: Update copyright. (PWD_LOCKFILE): Change to /etc/.pwd.lock. * stdlib/strtod.c: Add another assertion. * stdlib/tst-strtod.c: Add another test case. * sysdeps/generic/paths.h: Add _PATH_PRESERVE. Needed by nvi. * sysdeps/unix/sysv/linux/paths.h: Likewise. * sysdeps/gnu/utmpbits.h: Rename ut_addr field to ut_addr_v6. ut_addr names a single element in ut_addr_v6. * sysdeps/mach/hurd/xmknod.c: Remove alias from __mknod to mknod. Patch by Thomas Bushnell, n/BSG. Tue Dec 10 11:35:28 1996 Richard Henderson <rth@tamu.edu> * sysdeps/alpha/strncmp.S: Fix aligned short truncated compare corner condition. * sysdeps/alpha/memchr.S: Don't read ahead, even if the load did fit nicely into that delay slot (patch from David Mosberger-Tang). Mon Dec 9 23:53:43 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Renamed from `ttyname_r'. (ttyname_r): New alias. * stdio-common/printf_fp.c (__guess_grouping): Fix off by one
89 lines
2.8 KiB
C
89 lines
2.8 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 or with the express written consent of
|
|
* Sun Microsystems, Inc.
|
|
*
|
|
* 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
|
|
*/
|
|
/*
|
|
* Copyright (c) 1986, 1990 by Sun Microsystems, Inc.
|
|
*/
|
|
/* from @(#)ypupdate_prot.x 1.3 91/03/11 TIRPC 1.0 */
|
|
|
|
#ifndef __RPCSVC_YPUPD_H__
|
|
#define __RPCSVC_YPUPD_H__
|
|
|
|
#include <features.h>
|
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#define MAXMAPNAMELEN 255
|
|
#define MAXYPDATALEN 1023
|
|
#define MAXERRMSGLEN 255
|
|
|
|
__BEGIN_DECLS
|
|
|
|
typedef struct {
|
|
u_int yp_buf_len;
|
|
char *yp_buf_val;
|
|
} yp_buf;
|
|
|
|
extern bool_t xdr_yp_buf __P ((XDR *, yp_buf*));
|
|
|
|
struct ypupdate_args {
|
|
char *mapname;
|
|
yp_buf key;
|
|
yp_buf datum;
|
|
};
|
|
typedef struct ypupdate_args ypupdate_args;
|
|
|
|
extern bool_t xdr_ypupdate_args __P ((XDR *, ypupdate_args*));
|
|
|
|
struct ypdelete_args {
|
|
char *mapname;
|
|
yp_buf key;
|
|
};
|
|
typedef struct ypdelete_args ypdelete_args;
|
|
|
|
extern bool_t xdr_ypdelete_args __P ((XDR *, ypdelete_args*));
|
|
|
|
#define YPU_PROG ((u_long)100028)
|
|
#define YPU_VERS ((u_long)1)
|
|
|
|
#define YPU_CHANGE ((u_long)1)
|
|
extern u_int * ypu_change_1 __P ((ypupdate_args *, CLIENT *));
|
|
extern u_int * ypu_change_1_svc __P((ypupdate_args *, struct svc_req *));
|
|
#define YPU_INSERT ((u_long)2)
|
|
extern u_int * ypu_insert_1 __P ((ypupdate_args *, CLIENT *));
|
|
extern u_int * ypu_insert_1_svc __P ((ypupdate_args *, struct svc_req *));
|
|
#define YPU_DELETE ((u_long)3)
|
|
extern u_int * ypu_delete_1 __P ((ypdelete_args *, CLIENT *));
|
|
extern u_int * ypu_delete_1_svc __P ((ypdelete_args *, struct svc_req *));
|
|
#define YPU_STORE ((u_long)4)
|
|
extern u_int * ypu_store_1 __P ((ypupdate_args *, CLIENT *));
|
|
extern u_int * ypu_store_1_svc __P ((ypupdate_args *, struct svc_req *));
|
|
|
|
#endif /* !__RPCSVC_YPUPD_H__ */
|