mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Hurd: Add more ipv6 macros.
This commit is contained in:
committed by
Roland McGrath
parent
89c9aa491a
commit
bcfe3a546e
40
ChangeLog
40
ChangeLog
@ -1,3 +1,9 @@
|
|||||||
|
2012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
|
[BZ #3906]
|
||||||
|
* bits/in.h (IPV6_PKTINFO): Define new macro.
|
||||||
|
(IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
|
||||||
|
|
||||||
2012-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
2012-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
||||||
|
|
||||||
[BZ #13954]
|
[BZ #13954]
|
||||||
@ -150,16 +156,16 @@
|
|||||||
(main): Remove informal message about syslog.
|
(main): Remove informal message about syslog.
|
||||||
(options): Fix typo.
|
(options): Fix typo.
|
||||||
|
|
||||||
[BZ #14053]
|
[BZ #14053]
|
||||||
* sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
|
* sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
|
||||||
to asm.
|
to asm.
|
||||||
(lrint): Likewise.
|
(lrint): Likewise.
|
||||||
(llrintf): Likewise.
|
(llrintf): Likewise.
|
||||||
(llrint): Likewise.
|
(llrint): Likewise.
|
||||||
(rint): Likewise.
|
(rint): Likewise.
|
||||||
(rintf): Likewise.
|
(rintf): Likewise.
|
||||||
(nearbyint): Likewise.
|
(nearbyint): Likewise.
|
||||||
(nearbyintf): Likewise.
|
(nearbyintf): Likewise.
|
||||||
|
|
||||||
2012-05-09 Andreas Jaeger <aj@suse.de>
|
2012-05-09 Andreas Jaeger <aj@suse.de>
|
||||||
Pedro Alves <palves@redhat.com>
|
Pedro Alves <palves@redhat.com>
|
||||||
@ -170,12 +176,12 @@
|
|||||||
2012-05-09 Alexandre Oliva <aoliva@redhat.com>
|
2012-05-09 Alexandre Oliva <aoliva@redhat.com>
|
||||||
Andreas Jaeger <aj@suse.de>
|
Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* nscd/nscd.c (go_background): Replaced with...
|
* nscd/nscd.c (go_background): Replaced with...
|
||||||
(run_mode): ... this.
|
(run_mode): ... this.
|
||||||
(RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
|
(RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
|
||||||
(options): Add -F --foreground.
|
(options): Add -F --foreground.
|
||||||
(main): Implement it.
|
(main): Implement it.
|
||||||
(parse_opt): Parse it.
|
(parse_opt): Parse it.
|
||||||
|
|
||||||
2012-05-09 Andreas Jaeger <aj@suse.de>
|
2012-05-09 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
@ -351,9 +357,9 @@
|
|||||||
|
|
||||||
2012-05-08 Roland Mc Grath <roland@hack.frob.com>
|
2012-05-08 Roland Mc Grath <roland@hack.frob.com>
|
||||||
|
|
||||||
[BZ #13979]
|
[BZ #13979]
|
||||||
* include/features.h: Warn if user requests __FORTIFY_SOURCE
|
* include/features.h: Warn if user requests __FORTIFY_SOURCE
|
||||||
checking but the checks are disabled for any reason.
|
checking but the checks are disabled for any reason.
|
||||||
|
|
||||||
2012-05-08 H.J. Lu <hongjiu.lu@intel.com>
|
2012-05-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1997, 2000, 2004, 2007 Free Software Foundation, Inc.
|
/* Copyright (C) 1997-2012 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -49,7 +49,7 @@ struct ip_opts
|
|||||||
|
|
||||||
/* IPV6 socket options. */
|
/* IPV6 socket options. */
|
||||||
#define IPV6_ADDRFORM 1
|
#define IPV6_ADDRFORM 1
|
||||||
#define IPV6_RXINFO 2
|
#define IPV6_PKTINFO 2
|
||||||
#define IPV6_HOPOPTS 3
|
#define IPV6_HOPOPTS 3
|
||||||
#define IPV6_DSTOPTS 4
|
#define IPV6_DSTOPTS 4
|
||||||
#define IPV6_RTHDR 5
|
#define IPV6_RTHDR 5
|
||||||
@ -57,8 +57,9 @@ struct ip_opts
|
|||||||
#define IPV6_CHECKSUM 7
|
#define IPV6_CHECKSUM 7
|
||||||
#define IPV6_HOPLIMIT 8
|
#define IPV6_HOPLIMIT 8
|
||||||
|
|
||||||
#define IPV6_TXINFO IPV6_RXINFO
|
#define IPV6_RXINFO IPV6_PKTINFO
|
||||||
#define SCM_SRCINFO IPV6_TXINFO
|
#define IPV6_TXINFO IPV6_PKTINFO
|
||||||
|
#define SCM_SRCINFO IPV6_PKTINFO
|
||||||
#define SCM_SRCRT IPV6_RXSRCRT
|
#define SCM_SRCRT IPV6_RXSRCRT
|
||||||
|
|
||||||
#define IPV6_UNICAST_HOPS 16
|
#define IPV6_UNICAST_HOPS 16
|
||||||
|
Reference in New Issue
Block a user