mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
7ba4fcfcf2
1998-06-01 Gordon Matzigkeit <gord@profitpress.com> * hurd/Makefile (routines): Add cthreads. 1998-05-31 Mark Kettenis <kettenis@phys.uva.nl> * login/login.c (login): Let pututline take care of finding the positin to insert the UTMP entry. This corrects a bug where ssh was not reusing UTMP entries marked as DEAD_PROCESS. Reported by Herbert Xu <herbert@gondor.apana.org.au>. 1998-05-31 Mark Kettenis <kettenis@phys.uva.nl> * login/Makefile (tests): New variable, add tst-utmp and tst-utmpx. * login/tst-utmp.c: New file. * login/tst-utmpx.c: New file. 1998-06-01 Gordon Matzigkeit <gord@profitpress.com> * sysdeps/mach/hurd/errlist.c (sys_nerr, _sys_nerr): Make weak aliases for _hurd_nerr, for programs that don't use sys_errlist, but need sys_err. 1998-05-31 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/generic/updwtmpx.c: Rename function to updwtmpx. * libc.map: Add updwtmpx and utmpxname to GLIBC_2.1. 1998-05-31 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/mach/hurd/read.c: Rename function to __libc_read and make __read a weak alias. Use ANSI-style function definition. * sysdeps/mach/hurd/write.c: Likewise. 1998-05-31 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/mach/hurd/err_hurd.sub: Use _hurd_errlist instead of _sys_errlist. 1998-05-30 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/mach/hurd/Makefile ($(objpfx)librtld.os): Renamed from librtld.so. 1998-06-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> * libc.map: Remove _IO_getline_info which was erroneously introduced in section GLIBC_2.0. Noticed by Horst von Brand <vonbrand@sleipnir.valparaiso.cl>. 1998-06-01 Gordon Matzigkeit <gord@profitpress.com> * sysdeps/generic/socket.c (__socket): Renamed from socket, and created a weak alias. * sysdeps/mach/hurd/socket.c (__socket): Likewise. 1998-05-31 Gordon Matzigkeit <gord@profitpress.com> * sysdeps/mach/hurd/ftruncate.c (__ftruncate): Rename from old ftruncate function, and create a weak alias to ftruncate. 1998-06-01 Gordon Matzigkeit <gord@profitpress.com> * grp/fgetgrent_r.c: Use &errno instead of __errno_location (). * inet/getnetgrent_r.c: Likewise. * nss/getXXbyYY_r.c: Likewise. * nss/getXXent_r.c: Likewise. * pwd/fgetpwent_r.c: Likewise. * shadow/sgetspent_r.c: Likewise. * shadow/fgetspent_r.c: Likewise. * sunrpc/publickey.c: Likewise. 1998-06-01 Gordon Matzigkeit <gord@profitpress.com> * hurd/libhurduser.map: New file. * mach/libmachuser.map: Likewise. * libc.map: Add Hurd-specific functions to version 2.1. Add __flshfp and __fillbf. 1998-05-30 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * manual/signal.texi (Basic Signal Handling): Fix typo. * manual/errno.texi (Error Codes): Likewise. 1998-06-02 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/netipx/ipx.h: Include <bits/sockaddr.h> instead of <sys/socket.h>. Patch by NIIBE Yutaka <gniibe@mri.co.jp> * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c (DL_FIND_ARG_COMPONENTS): Finally make it working. Patch by Mark Hatle <fray@kernel.crashing.org>. 1998-03-22 Paul Eggert <eggert@twinsun.com> * posix/regex.c: Include <wchar.h> before <wctype.h>, to work around a Solaris 2.6 bug.
113 lines
2.9 KiB
C
113 lines
2.9 KiB
C
/* Copyright (C) 1991, 92, 93, 95, 96, 97, 98 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef __NETIPX_IPX_H
|
|
#define __NETIPX_IPX_H 1
|
|
|
|
#include <features.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <bits/sockaddr.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define SOL_IPX 256 /* sockopt level */
|
|
|
|
#define IPX_TYPE 1
|
|
#define IPX_NODE_LEN 6
|
|
#define IPX_MTU 576
|
|
|
|
struct sockaddr_ipx
|
|
{
|
|
sa_family_t sipx_family;
|
|
u_int16_t sipx_port;
|
|
u_int32_t sipx_network;
|
|
unsigned char sipx_node[IPX_NODE_LEN];
|
|
u_int8_t sipx_type;
|
|
unsigned char sipx_zero; /* 16 byte fill */
|
|
};
|
|
|
|
/*
|
|
* So we can fit the extra info for SIOCSIFADDR into the address nicely
|
|
*/
|
|
|
|
#define sipx_special sipx_port
|
|
#define sipx_action sipx_zero
|
|
#define IPX_DLTITF 0
|
|
#define IPX_CRTITF 1
|
|
|
|
typedef struct ipx_route_definition
|
|
{
|
|
unsigned long ipx_network;
|
|
unsigned long ipx_router_network;
|
|
unsigned char ipx_router_node[IPX_NODE_LEN];
|
|
}
|
|
ipx_route_definition;
|
|
|
|
typedef struct ipx_interface_definition
|
|
{
|
|
unsigned long ipx_network;
|
|
unsigned char ipx_device[16];
|
|
unsigned char ipx_dlink_type;
|
|
#define IPX_FRAME_NONE 0
|
|
#define IPX_FRAME_SNAP 1
|
|
#define IPX_FRAME_8022 2
|
|
#define IPX_FRAME_ETHERII 3
|
|
#define IPX_FRAME_8023 4
|
|
#define IPX_FRAME_TR_8022 5
|
|
unsigned char ipx_special;
|
|
#define IPX_SPECIAL_NONE 0
|
|
#define IPX_PRIMARY 1
|
|
#define IPX_INTERNAL 2
|
|
unsigned char ipx_node[IPX_NODE_LEN];
|
|
}
|
|
ipx_interface_definition;
|
|
|
|
typedef struct ipx_config_data
|
|
{
|
|
unsigned char ipxcfg_auto_select_primary;
|
|
unsigned char ipxcfg_auto_create_interfaces;
|
|
}
|
|
ipx_config_data;
|
|
|
|
/*
|
|
* OLD Route Definition for backward compatibility.
|
|
*/
|
|
|
|
struct ipx_route_def
|
|
{
|
|
unsigned long ipx_network;
|
|
unsigned long ipx_router_network;
|
|
#define IPX_ROUTE_NO_ROUTER 0
|
|
unsigned char ipx_router_node[IPX_NODE_LEN];
|
|
unsigned char ipx_device[16];
|
|
unsigned short ipx_flags;
|
|
#define IPX_RT_SNAP 8
|
|
#define IPX_RT_8022 4
|
|
#define IPX_RT_BLUEBOOK 2
|
|
#define IPX_RT_ROUTED 1
|
|
};
|
|
|
|
#define SIOCAIPXITFCRT (SIOCPROTOPRIVATE)
|
|
#define SIOCAIPXPRISLT (SIOCPROTOPRIVATE + 1)
|
|
#define SIOCIPXCFGDATA (SIOCPROTOPRIVATE + 2)
|
|
|
|
__END_DECLS
|
|
|
|
#endif /* netipx/ipx.h */
|