Changeset 026bb5d for patches


Ignore:
Timestamp:
Dec 18, 2013, 1:04:00 AM (11 years ago)
Author:
Chris Staub <chris@…>
Children:
f975b3a
Parents:
1c9985f (diff), 8abef998 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Updated simp branch to match main book

Location:
patches
Files:
19 added
16 deleted
5 moved

Legend:

Unmodified
Added
Removed
  • patches/coreutils-8.22-uname-1.patch

    r1c9985f r026bb5d  
    1010Rediffed for 8.4 by Joe Ciccone
    1111Rediffed for 8.9 by Joe Ciccone
     12Rediffed for 8.16 by Jonathan Norman - 2012-06-10
     13Rediffed for 8.19 by William Harrington - 2012-08-27
     14Renamed for 8.20 by William Harrington - 2012-11-01
     15Rediffed for 8.21 by William Harrington 2013-05-31
     16Renamed for 8.22 by William Harrington - 2013-12-14
    1217
    13 --- coreutils-8.9.orig/src/uname.c      2010-01-01 08:06:47.000000000 -0500
    14 +++ coreutils-8.9/src/uname.c   2010-07-26 20:44:24.389842706 -0400
    15 @@ -50,6 +50,11 @@
     18diff -Naur coreutils-8.21.orig/src/uname.c coreutils-8.21/src/uname.c
     19--- coreutils-8.21.orig/src/uname.c     2013-01-31 00:46:24.000000000 +0000
     20+++ coreutils-8.21/src/uname.c  2013-05-31 13:41:32.683326834 +0000
     21@@ -49,6 +49,11 @@
    1622 # include <mach-o/arch.h>
    1723 #endif
     
    2531 #include "error.h"
    2632 #include "quote.h"
    27 @@ -155,6 +160,117 @@
     33@@ -153,6 +158,117 @@
    2834   exit (status);
    2935 }
     
    143149    printed.  */
    144150 
    145 @@ -302,10 +418,14 @@
     151@@ -300,10 +416,14 @@
    146152   if (toprint & PRINT_PROCESSOR)
    147153     {
     
    159165       }
    160166 #endif
    161 @@ -358,9 +478,13 @@
     167@@ -356,9 +476,13 @@
    162168       if (element == unknown)
    163169         {
  • patches/iputils-s20121221-fixes-1.patch

    r1c9985f r026bb5d  
    1 Submitted By: Joe Ciccone <jciccone@gmail.com>
    2 Date: 2011-01-08
    3 Initial Package Version: s20100418
     1Submitted By: William Harrington <kb0iic at cross-lfs dot org>
     2Date: 2013-08-06
     3Initial Package Version: s20121221
    44Upstream Status: Unknown
    55Origin: Unknown
    6 Description: Contains Pregenerated Documentation
     6Description: Contains Fixes for Various Issues and Manpages
    77
    8 
    9 diff -Naur iputils-s20101006.orig/doc/arping.8 iputils-s20101006/doc/arping.8
    10 --- iputils-s20101006.orig/doc/arping.8 1969-12-31 19:00:00.000000000 -0500
    11 +++ iputils-s20101006/doc/arping.8      2011-01-08 20:09:50.402928174 -0500
    12 @@ -0,0 +1,110 @@
     8diff -Naur iputils-s20121221.orig/Makefile iputils-s20121221/Makefile
     9--- iputils-s20121221.orig/Makefile     2012-12-21 14:01:07.000000000 +0000
     10+++ iputils-s20121221/Makefile  2013-08-06 18:09:09.448346619 +0000
     11@@ -2,8 +2,6 @@
     12 # Configuration
     13 #
     14 
     15-# CC
     16-CC=gcc
     17 # Path to parent kernel include files directory
     18 LIBC_INCLUDE=/usr/include
     19 # Libraries
     20@@ -36,7 +34,7 @@
     21 
     22 # GNU TLS library for ping6 [yes|no|static]
     23 USE_GNUTLS=yes
     24-# Crypto library for ping6 [shared|static]
     25+# Crypto library for ping6 [shared|static|no]
     26 USE_CRYPTO=shared
     27 # Resolv library for ping6 [yes|static]
     28 USE_RESOLV=yes
     29@@ -48,11 +46,10 @@
     30 
     31 # -------------------------------------
     32 # What a pity, all new gccs are buggy and -Werror does not work. Sigh.
     33-# CCOPT=-fno-strict-aliasing -Wstrict-prototypes -Wall -Werror -g
     34-CCOPT=-fno-strict-aliasing -Wstrict-prototypes -Wall -g
     35-CCOPTOPT=-O3
     36-GLIBCFIX=-D_GNU_SOURCE
     37-DEFINES=
     38+# CFLAGS+=-fno-strict-aliasing -Wstrict-prototypes -Wall -Werror -g
     39+CFLAGS?=-O3 -g
     40+CFLAGS+=-fno-strict-aliasing -Wstrict-prototypes -Wall
     41+CPPFLAGS+=-D_GNU_SOURCE
     42 LDLIB=
     43 
     44 FUNC_LIB = $(if $(filter static,$(1)),$(LDFLAG_STATIC) $(2) $(LDFLAG_DYNAMIC),$(2))
     45@@ -63,7 +60,10 @@
     46        LIB_CRYPTO = $(call FUNC_LIB,$(USE_GNUTLS),$(LDFLAG_GNUTLS))
     47        DEF_CRYPTO = -DUSE_GNUTLS
     48 else
     49+ifneq ($(USE_CRYPTO),no)
     50        LIB_CRYPTO = $(call FUNC_LIB,$(USE_CRYPTO),$(LDFLAG_CRYPTO))
     51+       DEF_CRYPTO = -DUSE_OPENSSL
     52+endif
     53 endif
     54 
     55 # USE_RESOLV: LIB_RESOLV
     56@@ -110,7 +110,6 @@
     57 IPV6_TARGETS=tracepath6 traceroute6 ping6
     58 TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
     59 
     60-CFLAGS=$(CCOPTOPT) $(CCOPT) $(GLIBCFIX) $(DEFINES)
     61 LDLIBS=$(LDLIB) $(ADDLIB)
     62 
     63 UNAME_N:=$(shell uname -n)
     64@@ -129,6 +128,7 @@
     65        $(COMPILE.c) $< $(DEF_$(patsubst %.o,%,$@)) -S -o $@
     66 %.o: %.c
     67        $(COMPILE.c) $< $(DEF_$(patsubst %.o,%,$@)) -o $@
     68+LINK.o += $(CFLAGS)
     69 $(TARGETS): %: %.o
     70        $(LINK.o) $^ $(LIB_$@) $(LDLIBS) -o $@
     71 
     72@@ -149,7 +149,7 @@
     73 DEF_ping_common = $(DEF_CAP) $(DEF_IDN)
     74 DEF_ping  = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS)
     75 LIB_ping  = $(LIB_CAP) $(LIB_IDN)
     76-DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR)
     77+DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) $(DEF_CRYPTO)
     78 LIB_ping6 = $(LIB_CAP) $(LIB_IDN) $(LIB_RESOLV) $(LIB_CRYPTO)
     79 
     80 ping: ping_common.o
     81diff -Naur iputils-s20121221.orig/doc/arping.8 iputils-s20121221/doc/arping.8
     82--- iputils-s20121221.orig/doc/arping.8 1970-01-01 00:00:00.000000000 +0000
     83+++ iputils-s20121221/doc/arping.8      2013-01-04 10:38:27.000000000 +0000
     84@@ -0,0 +1,109 @@
    1385+.\" This manpage has been automatically generated by docbook2man
    1486+.\" from a DocBook document.  This tool can be found at:
     
    1688+.\" Please send any bug reports, improvements, comments, patches,
    1789+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    18 +.TH "ARPING" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     90+.TH "ARPING" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    1991+.SH NAME
    2092+arping \- send ARP REQUEST to a neighbour host
     
    53125+.TP
    54126+\fB-I \fIinterface\fB\fR
    55 +Name of network device where to send ARP REQUEST packets. This option
    56 +is required.
     127+Name of network device where to send ARP REQUEST packets.
    57128+.TP
    58129+\fB-h\fR
     
    113184+.SH "SECURITY"
    114185+.PP
    115 +\fBarping\fR requires CAP_NET_RAWIO capability
     186+\fBarping\fR requires CAP_NET_RAW capability
    116187+to be executed. It is not recommended to be used as set-uid root,
    117188+because it allows user to modify ARP caches of neighbour hosts.
     
    121192+and the latest versions are  available in source form at
    122193+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    123 diff -Naur iputils-s20101006.orig/doc/clockdiff.8 iputils-s20101006/doc/clockdiff.8
    124 --- iputils-s20101006.orig/doc/clockdiff.8      1969-12-31 19:00:00.000000000 -0500
    125 +++ iputils-s20101006/doc/clockdiff.8   2011-01-08 20:09:50.611280874 -0500
     194diff -Naur iputils-s20121221.orig/doc/clockdiff.8 iputils-s20121221/doc/clockdiff.8
     195--- iputils-s20121221.orig/doc/clockdiff.8      1970-01-01 00:00:00.000000000 +0000
     196+++ iputils-s20121221/doc/clockdiff.8   2013-01-04 10:38:27.000000000 +0000
    126197@@ -0,0 +1,81 @@
    127198+.\" This manpage has been automatically generated by docbook2man
     
    130201+.\" Please send any bug reports, improvements, comments, patches,
    131202+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    132 +.TH "CLOCKDIFF" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     203+.TH "CLOCKDIFF" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    133204+.SH NAME
    134205+clockdiff \- measure clock difference between hosts
     
    199270+.SH "SECURITY"
    200271+.PP
    201 +\fBclockdiff\fR requires CAP_NET_RAWIO capability
     272+\fBclockdiff\fR requires CAP_NET_RAW capability
    202273+to be executed. It is safe to be used as set-uid root.
    203274+.SH "AVAILABILITY"
     
    206277+and the latest versions are  available in source form at
    207278+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    208 diff -Naur iputils-s20101006.orig/doc/index.html iputils-s20101006/doc/index.html
    209 --- iputils-s20101006.orig/doc/index.html       1969-12-31 19:00:00.000000000 -0500
    210 +++ iputils-s20101006/doc/index.html    2011-01-08 20:09:49.631531431 -0500
    211 @@ -0,0 +1,170 @@
    212 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     279diff -Naur iputils-s20121221.orig/doc/index.html iputils-s20121221/doc/index.html
     280--- iputils-s20121221.orig/doc/index.html       1970-01-01 00:00:00.000000000 +0000
     281+++ iputils-s20121221/doc/index.html    2013-01-04 10:38:35.000000000 +0000
     282@@ -0,0 +1,175 @@
     283+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    213284+<HTML
    214285+><HEAD
     
    285356+><DT
    286357+><A
    287 +HREF="r437.html"
     358+HREF="r466.html"
    288359+>arping</A
    289360+>&nbsp;--&nbsp;send ARP REQUEST to a neighbour host</DT
    290361+><DT
    291362+><A
    292 +HREF="r596.html"
     363+HREF="r625.html"
    293364+>clockdiff</A
    294365+>&nbsp;--&nbsp;measure clock difference between hosts</DT
    295366+><DT
    296367+><A
    297 +HREF="r691.html"
     368+HREF="r720.html"
    298369+>rarpd</A
    299370+>&nbsp;--&nbsp;answer RARP REQUESTs</DT
    300371+><DT
    301372+><A
    302 +HREF="r790.html"
     373+HREF="r819.html"
    303374+>tracepath</A
    304375+>&nbsp;--&nbsp;traces path to a network host discovering MTU along this path</DT
    305376+><DT
    306377+><A
    307 +HREF="r884.html"
     378+HREF="r918.html"
    308379+>traceroute6</A
    309380+>&nbsp;--&nbsp;traces path to a network host</DT
    310381+><DT
    311382+><A
    312 +HREF="r949.html"
     383+HREF="r983.html"
    313384+>tftpd</A
    314385+>&nbsp;--&nbsp;Trivial File Transfer Protocol server</DT
    315386+><DT
    316387+><A
    317 +HREF="r1022.html"
     388+HREF="r1056.html"
     389+>ninfod</A
     390+>&nbsp;--&nbsp;Respond to IPv6 Node Information Queries</DT
     391+><DT
     392+><A
     393+HREF="r1125.html"
    318394+>rdisc</A
    319395+>&nbsp;--&nbsp;network router discovery daemon</DT
    320396+><DT
    321397+><A
    322 +HREF="r1144.html"
     398+HREF="r1269.html"
    323399+>pg3</A
    324400+>&nbsp;--&nbsp;send stream of UDP packets</DT
     
    381457+>
    382458\ No newline at end of file
    383 diff -Naur iputils-s20101006.orig/doc/iputils.html iputils-s20101006/doc/iputils.html
    384 --- iputils-s20101006.orig/doc/iputils.html     1969-12-31 19:00:00.000000000 -0500
    385 +++ iputils-s20101006/doc/iputils.html  2011-01-08 20:09:50.282802377 -0500
     459diff -Naur iputils-s20121221.orig/doc/iputils.html iputils-s20121221/doc/iputils.html
     460--- iputils-s20121221.orig/doc/iputils.html     1970-01-01 00:00:00.000000000 +0000
     461+++ iputils-s20121221/doc/iputils.html  2013-01-04 10:38:35.000000000 +0000
    386462@@ -0,0 +1,491 @@
    387 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     463+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    388464+<HTML
    389465+><HEAD
     
    877953+>
    878954\ No newline at end of file
    879 diff -Naur iputils-s20101006.orig/doc/pg3.8 iputils-s20101006/doc/pg3.8
    880 --- iputils-s20101006.orig/doc/pg3.8    1969-12-31 19:00:00.000000000 -0500
    881 +++ iputils-s20101006/doc/pg3.8 2011-01-08 20:09:50.890656148 -0500
     955diff -Naur iputils-s20121221.orig/doc/ninfod.8 iputils-s20121221/doc/ninfod.8
     956--- iputils-s20121221.orig/doc/ninfod.8 1970-01-01 00:00:00.000000000 +0000
     957+++ iputils-s20121221/doc/ninfod.8      2013-01-04 10:38:27.000000000 +0000
     958@@ -0,0 +1,72 @@
     959+.\" This manpage has been automatically generated by docbook2man
     960+.\" from a DocBook document.  This tool can be found at:
     961+.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
     962+.\" Please send any bug reports, improvements, comments, patches,
     963+.\" etc. to Steve Cheng <steve@ggi-project.org>.
     964+.TH "NINFOD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
     965+.SH NAME
     966+ninfod \- Respond to IPv6 Node Information Queries
     967+.SH SYNOPSIS
     968+
     969+\fBninfod\fR [\fB-dhv\fR] [\fB-p \fIpidfile\fB\fR] [\fB-u \fIuser\fB\fR]
     970+
     971+.SH "DESCRIPTION"
     972+.PP
     973+Responds to IPv6 Node Information Queries (RFC4620) from clients.
     974+Queries can be sent by various implementations of \fBping6\fR command.
     975+.SH "OPTIONS"
     976+.TP
     977+\fB-a\fR
     978+Debug mode.  Do not go background.
     979+.TP
     980+\fB-h\fR
     981+Show help.
     982+.TP
     983+\fB-v\fR
     984+Verbose mode.
     985+.TP
     986+\fB-u \fIuser\fB\fR
     987+Run as another user.
     988+\fIuser\fR can either be username or user ID.
     989+.TP
     990+\fB-p \fIpidfile\fB\fR
     991+File for process-id storage.
     992+\fIuser\fR is required to be able to create the file.
     993+.SH "SEE ALSO"
     994+.PP
     995+\fBping\fR(8).
     996+.SH "AUTHOR"
     997+.PP
     998+\fBninfod\fR was written by USAGI/WIDE Project.
     999+.SH "COPYING"
     1000+.PP
     1001+
     1002+.nf
     1003+Copyright (C) 2012 YOSHIFUJI Hideaki.
     1004+Copyright (C) 2002 USAGI/WIDE Project.
     1005+All rights reserved.
     1006+
     1007+Redistribution and use in source and binary forms, with or without
     1008+modification, are permitted provided that the following conditions
     1009+are met:
     1010+1. Redistributions of source code must retain the above copyright
     1011+   notice, this list of conditions and the following disclaimer.
     1012+2. Redistributions in binary form must reproduce the above copyright
     1013+   notice, this list of conditions and the following disclaimer in the
     1014+   documentation and/or other materials provided with the distribution.
     1015+3. Neither the name of the project nor the names of its contributors
     1016+   may be used to endorse or promote products derived from this software
     1017+   without specific prior written permission.
     1018+
     1019+THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     1020+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     1021+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     1022+ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     1023+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     1024+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     1025+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     1026+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     1027+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     1028+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     1029+SUCH DAMAGE.
     1030+.fi
     1031diff -Naur iputils-s20121221.orig/doc/pg3.8 iputils-s20121221/doc/pg3.8
     1032--- iputils-s20121221.orig/doc/pg3.8    1970-01-01 00:00:00.000000000 +0000
     1033+++ iputils-s20121221/doc/pg3.8 2013-01-04 10:38:27.000000000 +0000
    8821034@@ -0,0 +1,86 @@
    8831035+.\" This manpage has been automatically generated by docbook2man
     
    8861038+.\" Please send any bug reports, improvements, comments, patches,
    8871039+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    888 +.TH "PG3" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     1040+.TH "PG3" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    8891041+.SH NAME
    8901042+pg3, ipg, pgset \- send stream of UDP packets
     
    9671119+and the latest versions are  available in source form at
    9681120+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    969 diff -Naur iputils-s20101006.orig/doc/ping.8 iputils-s20101006/doc/ping.8
    970 --- iputils-s20101006.orig/doc/ping.8   1969-12-31 19:00:00.000000000 -0500
    971 +++ iputils-s20101006/doc/ping.8        2011-01-08 20:09:50.986782167 -0500
    972 @@ -0,0 +1,408 @@
     1121diff -Naur iputils-s20121221.orig/doc/ping.8 iputils-s20121221/doc/ping.8
     1122--- iputils-s20121221.orig/doc/ping.8   1970-01-01 00:00:00.000000000 +0000
     1123+++ iputils-s20121221/doc/ping.8        2013-01-04 10:38:27.000000000 +0000
     1124@@ -0,0 +1,428 @@
    9731125+.\" This manpage has been automatically generated by docbook2man
    9741126+.\" from a DocBook document.  This tool can be found at:
     
    9761128+.\" Please send any bug reports, improvements, comments, patches,
    9771129+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    978 +.TH "PING" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     1130+.TH "PING" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    9791131+.SH NAME
    9801132+ping, ping6 \- send ICMP ECHO_REQUEST to network hosts
    9811133+.SH SYNOPSIS
    9821134+
    983 +\fBping\fR [\fB-LRUbdfnqrvVaAB\fR] [\fB-c \fIcount\fB\fR] [\fB-m \fImark\fB\fR] [\fB-i \fIinterval\fB\fR] [\fB-l \fIpreload\fB\fR] [\fB-p \fIpattern\fB\fR] [\fB-s \fIpacketsize\fB\fR] [\fB-t \fIttl\fB\fR] [\fB-w \fIdeadline\fB\fR] [\fB-F \fIflowlabel\fB\fR] [\fB-I \fIinterface\fB\fR] [\fB-M \fIhint\fB\fR] [\fB-N \fInioption\fB\fR] [\fB-Q \fItos\fB\fR] [\fB-S \fIsndbuf\fB\fR] [\fB-T \fItimestamp option\fB\fR] [\fB-W \fItimeout\fB\fR] [\fB\fIhop\fB\fR\fI ...\fR] \fB\fIdestination\fB\fR
     1135+\fBping\fR [\fB-aAbBdDfhLnOqrRUvV\fR] [\fB-c \fIcount\fB\fR] [\fB-F \fIflowlabel\fB\fR] [\fB-i \fIinterval\fB\fR] [\fB-I \fIinterface\fB\fR] [\fB-l \fIpreload\fB\fR] [\fB-m \fImark\fB\fR] [\fB-M \fIpmtudisc_option\fB\fR] [\fB-N \fInodeinfo_option\fB\fR] [\fB-w \fIdeadline\fB\fR] [\fB-W \fItimeout\fB\fR] [\fB-p \fIpattern\fB\fR] [\fB-Q \fItos\fB\fR] [\fB-s \fIpacketsize\fB\fR] [\fB-S \fIsndbuf\fB\fR] [\fB-t \fIttl\fB\fR] [\fB-T \fItimestamp option\fB\fR] [\fB\fIhop\fB\fR\fI ...\fR] \fB\fIdestination\fB\fR
    9841136+
    9851137+.SH "DESCRIPTION"
     
    9911143+number of ``pad'' bytes used to fill out the packet.
    9921144+.PP
    993 +\fBping6\fR can also send Node Information Queries (RFC4620).
     1145+\fBping6\fR is IPv6 version of \fBping\fR, and can also send Node Information Queries (RFC4620).
     1146+Intermediate \fIhop\fRs may not be allowed, because IPv6 source routing was deprecated (RFC5095).
    9941147+.SH "OPTIONS"
    9951148+.TP
     
    9991152+\fB-A\fR
    10001153+Adaptive ping. Interpacket interval adapts to round-trip time, so that
    1001 +effectively not more than one (or more, if preload is set) unanswered probes
    1002 +present in the network. Minimal interval is 200msec for not super-user.
     1154+effectively not more than one (or more, if preload is set) unanswered probe
     1155+is present in the network. Minimal interval is 200msec for not super-user.
    10031156+On networks with low rtt this mode is essentially equivalent to flood mode. 
    10041157+.TP
     
    10091162+Do not allow \fBping\fR to change source address of probes.
    10101163+The address is bound to one selected when \fBping\fR starts.
    1011 +.TP
    1012 +\fB-m \fImark\fB\fR
    1013 +use \fImark\fR to tag the packets going out. This is useful
    1014 +for variety of reasons within the kernel such as using policy
    1015 +routing to select specific outbound processing.
    10161164+.TP
    10171165+\fB-c \fIcount\fB\fR
     
    10261174+Essentially, this socket option is not used by Linux kernel.
    10271175+.TP
    1028 +\fB-F \fIflow label\fB\fR
    1029 +Allocate and set 20 bit flow label on echo request packets.
    1030 +(Only \fBping6\fR). If value is zero, kernel allocates random flow label.
     1176+\fB-D\fR
     1177+Print timestamp (unix time + microseconds as in gettimeofday) before
     1178+each line.
    10311179+.TP
    10321180+\fB-f\fR
     
    10391187+Only the super-user may use this option with zero interval.
    10401188+.TP
     1189+\fB-F \fIflow label\fB\fR
     1190+\fBping6\fR only.
     1191+Allocate and set 20 bit flow label (in hex) on echo request packets.
     1192+If value is zero, kernel allocates random flow label.
     1193+.TP
     1194+\fB-h\fR
     1195+Show help.
     1196+.TP
    10411197+\fB-i \fIinterval\fB\fR
    10421198+Wait \fIinterval\fR seconds between sending each packet.
     
    10451201+to values less 0.2 seconds.
    10461202+.TP
    1047 +\fB-I \fIinterface address\fB\fR
    1048 +Set source address to specified interface address. Argument
    1049 +may be numeric IP address or name of device. When pinging IPv6
    1050 +link-local address this option is required.
     1203+\fB-I \fIinterface\fB\fR
     1204+\fIinterface\fR is either an address, or an interface name.
     1205+If \fIinterface\fR is an address, it sets source address
     1206+to specified interface address.
     1207+If \fIinterface\fR in an interface name, it sets
     1208+source interface to specified interface.
     1209+For \fBping6\fR, when doing ping to a link-local scope
     1210+address, link specification (by the '%'-notation in
     1211+\fIdestination\fR, or by this option) is required.
    10511212+.TP
    10521213+\fB-l \fIpreload\fB\fR
     
    10591220+destination is a multicast address.
    10601221+.TP
    1061 +\fB-N \fInioption\fB\fR
     1222+\fB-m \fImark\fB\fR
     1223+use \fImark\fR to tag the packets going out. This is useful
     1224+for variety of reasons within the kernel such as using policy
     1225+routing to select specific outbound processing.
     1226+.TP
     1227+\fB-M \fIpmtudisc_opt\fB\fR
     1228+Select Path MTU Discovery strategy.
     1229+\fIpmtudisc_option\fR may be either \fIdo\fR
     1230+(prohibit fragmentation, even local one),
     1231+\fIwant\fR (do PMTU discovery, fragment locally when packet size
     1232+is large), or \fIdont\fR (do not set DF flag).
     1233+.TP
     1234+\fB-N \fInodeinfo_option\fB\fR
     1235+\fBping6\fR only.
    10621236+Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request.
     1237+.RS
     1238+.TP
     1239+\fBhelp\fR
     1240+Show help for NI support.
     1241+.RE
    10631242+.RS
    10641243+.TP
     
    11281307+No attempt will be made to lookup symbolic names for host addresses.
    11291308+.TP
     1309+\fB-O\fR
     1310+Report outstanding ICMP ECHO reply before sending next packet.
     1311+This is useful together with the timestamp \fB-D\fR to
     1312+log output to a diagnostic file and search for missing answers.
     1313+.TP
    11301314+\fB-p \fIpattern\fB\fR
    11311315+You may specify up to 16 ``pad'' bytes to fill out the packet you send.
     
    11341318+to be filled with all ones.
    11351319+.TP
    1136 +\fB-D\fR
    1137 +Print timestamp (unix time + microseconds as in gettimeofday) before
    1138 +each line.
    1139 +.TP
    1140 +\fB-Q \fItos\fB\fR
    1141 +Set Quality of Service -related bits in ICMP datagrams. 
    1142 +\fItos\fR can be either decimal or hex number.
    1143 +Traditionally (RFC1349), these have been interpreted as: 0 for reserved
    1144 +(currently being redefined as congestion control), 1-4 for Type of Service
    1145 +and 5-7 for Precedence.
    1146 +Possible settings for Type of Service are: minimal cost: 0x02,
    1147 +reliability: 0x04, throughput: 0x08, low delay: 0x10.  Multiple TOS bits
    1148 +should not be set simultaneously.  Possible settings for
    1149 +special Precedence range from priority (0x20) to net control (0xe0).  You
    1150 +must be root (CAP_NET_ADMIN capability) to use Critical or
    1151 +higher precedence value.  You cannot set
    1152 +bit 0x01 (reserved) unless ECN has been enabled in the kernel.
    1153 +In RFC2474, these fields has been redefined as 8-bit Differentiated
    1154 +Services (DS), consisting of: bits 0-1 of separate data (ECN will be used,
    1155 +here), and bits 2-7 of Differentiated Services Codepoint (DSCP).
    1156 +.TP
    11571320+\fB-q\fR
    11581321+Quiet output.
     
    11601323+when finished.
    11611324+.TP
    1162 +\fB-R\fR
    1163 +Record route.
    1164 +Includes the RECORD_ROUTE option in the ECHO_REQUEST
    1165 +packet and displays the route buffer on returned packets.
    1166 +Note that the IP header is only large enough for nine such routes.
    1167 +Many hosts ignore or discard this option.
     1325+\fB-Q \fItos\fB\fR
     1326+Set Quality of Service -related bits in ICMP datagrams.
     1327+\fItos\fR can be decimal (\fBping\fR only) or hex number.
     1328+
     1329+In RFC2474, these fields are interpreted as 8-bit Differentiated
     1330+Services (DS), consisting of: bits 0-1 (2 lowest bits) of separate
     1331+data, and bits 2-7 (highest 6 bits) of Differentiated Services
     1332+Codepoint (DSCP).  In RFC2481 and RFC3168, bits 0-1 are used for ECN.
     1333+
     1334+Historically (RFC1349, obsoleted by RFC2474), these were interpreted
     1335+as: bit 0 (lowest bit) for reserved (currently being redefined as
     1336+congestion control), 1-4 for Type of Service and bits 5-7
     1337+(highest bits) for Precedence.
    11681338+.TP
    11691339+\fB-r\fR
     
    11751345+used.
    11761346+.TP
     1347+\fB-R\fR
     1348+\fBping\fR only.
     1349+Record route.
     1350+Includes the RECORD_ROUTE option in the ECHO_REQUEST
     1351+packet and displays the route buffer on returned packets.
     1352+Note that the IP header is only large enough for nine such routes.
     1353+Many hosts ignore or discard this option.
     1354+.TP
    11771355+\fB-s \fIpacketsize\fB\fR
    11781356+Specifies the number of data bytes to be sent. 
     
    11851363+.TP
    11861364+\fB-t \fIttl\fB\fR
     1365+\fBping\fR only.
    11871366+Set the IP Time to Live.
    11881367+.TP
     
    11941373+\fItsprespec host1 [host2 [host3 [host4]]]\fR
    11951374+(timestamp prespecified hops).
    1196 +.TP
    1197 +\fB-M \fIhint\fB\fR
    1198 +Select Path MTU Discovery strategy.
    1199 +\fIhint\fR may be either \fIdo\fR
    1200 +(prohibit fragmentation, even local one),
    1201 +\fIwant\fR (do PMTU discovery, fragment locally when packet size
    1202 +is large), or \fIdont\fR (do not set DF flag).
    12031375+.TP
    12041376+\fB-U\fR
     
    12301402+\fB-W \fItimeout\fB\fR
    12311403+Time to wait for a response, in seconds. The option affects only timeout
    1232 +in absense of any responses, otherwise \fBping\fR waits for two RTTs.
     1404+in absence of any responses, otherwise \fBping\fR waits for two RTTs.
    12331405+.PP
    12341406+When using \fBping\fR for fault isolation, it should first be run
     
    13291501+\fBftp\fR(1).
    13301502+.PP
    1331 +In normal operation ping prints the ttl value from the packet it receives.
     1503+In normal operation ping prints the TTL value from the packet it receives.
    13321504+When a remote system receives a ping packet, it can do one of three things
    13331505+with the TTL field in its response:
     
    13721544+.SH "SECURITY"
    13731545+.PP
    1374 +\fBping\fR requires CAP_NET_RAWIO capability
     1546+\fBping\fR requires CAP_NET_RAW capability
    13751547+to be executed. It may be used as set-uid root.
    13761548+.SH "AVAILABILITY"
     
    13791551+and the latest versions are  available in source form at
    13801552+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    1381 diff -Naur iputils-s20101006.orig/doc/r1022.html iputils-s20101006/doc/r1022.html
    1382 --- iputils-s20101006.orig/doc/r1022.html       1969-12-31 19:00:00.000000000 -0500
    1383 +++ iputils-s20101006/doc/r1022.html    2011-01-08 20:09:49.623373190 -0500
    1384 @@ -0,0 +1,511 @@
    1385 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     1553diff -Naur iputils-s20121221.orig/doc/r1056.html iputils-s20121221/doc/r1056.html
     1554--- iputils-s20121221.orig/doc/r1056.html       1970-01-01 00:00:00.000000000 +0000
     1555+++ iputils-s20121221/doc/r1056.html    2013-01-04 10:38:35.000000000 +0000
     1556@@ -0,0 +1,343 @@
     1557+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    13861558+<HTML
    13871559+><HEAD
    13881560+><TITLE
    1389 +>rdisc</TITLE
     1561+>ninfod</TITLE
    13901562+><META
    13911563+NAME="GENERATOR"
     
    13961568+REL="PREVIOUS"
    13971569+TITLE="tftpd"
    1398 +HREF="r949.html"><LINK
     1570+HREF="r983.html"><LINK
    13991571+REL="NEXT"
    1400 +TITLE="pg3"
    1401 +HREF="r1144.html"></HEAD
     1572+TITLE="rdisc"
     1573+HREF="r1125.html"></HEAD
    14021574+><BODY
    14031575+CLASS="REFENTRY"
     
    14271599+VALIGN="bottom"
    14281600+><A
    1429 +HREF="r949.html"
     1601+HREF="r983.html"
    14301602+ACCESSKEY="P"
    14311603+>Prev</A
     
    14411613+VALIGN="bottom"
    14421614+><A
    1443 +HREF="r1144.html"
     1615+HREF="r1125.html"
    14441616+ACCESSKEY="N"
    14451617+>Next</A
     
    14521624+><H1
    14531625+><A
     1626+NAME="NINFOD"
     1627+></A
     1628+>ninfod</H1
     1629+><DIV
     1630+CLASS="REFNAMEDIV"
     1631+><A
     1632+NAME="AEN1061"
     1633+></A
     1634+><H2
     1635+>Name</H2
     1636+>ninfod&nbsp;--&nbsp;Respond to IPv6 Node Information Queries</DIV
     1637+><DIV
     1638+CLASS="REFSYNOPSISDIV"
     1639+><A
     1640+NAME="AEN1064"
     1641+></A
     1642+><H2
     1643+>Synopsis</H2
     1644+><P
     1645+><B
     1646+CLASS="COMMAND"
     1647+>ninfod</B
     1648+>  [<CODE
     1649+CLASS="OPTION"
     1650+>-dhv</CODE
     1651+>] [-p <TT
     1652+CLASS="REPLACEABLE"
     1653+><I
     1654+>pidfile</I
     1655+></TT
     1656+>] [-u <TT
     1657+CLASS="REPLACEABLE"
     1658+><I
     1659+>user</I
     1660+></TT
     1661+>]</P
     1662+></DIV
     1663+><DIV
     1664+CLASS="REFSECT1"
     1665+><A
     1666+NAME="AEN1073"
     1667+></A
     1668+><H2
     1669+>DESCRIPTION</H2
     1670+><P
     1671+>Responds to <A
     1672+HREF="http://tools.ietf.org/rfc/rfc4620.txt"
     1673+TARGET="_top"
     1674+>IPv6 Node Information Queries (RFC4620)</A
     1675+> from clients.
     1676+Queries can be sent by various implementations of <B
     1677+CLASS="COMMAND"
     1678+>ping6</B
     1679+> command.</P
     1680+></DIV
     1681+><DIV
     1682+CLASS="REFSECT1"
     1683+><A
     1684+NAME="AEN1078"
     1685+></A
     1686+><H2
     1687+>OPTIONS</H2
     1688+><P
     1689+></P
     1690+><DIV
     1691+CLASS="VARIABLELIST"
     1692+><DL
     1693+><DT
     1694+><CODE
     1695+CLASS="OPTION"
     1696+>-a</CODE
     1697+></DT
     1698+><DD
     1699+><P
     1700+>Debug mode.  Do not go background.
     1701+  </P
     1702+></DD
     1703+><DT
     1704+><CODE
     1705+CLASS="OPTION"
     1706+>-h</CODE
     1707+></DT
     1708+><DD
     1709+><P
     1710+>Show help.
     1711+  </P
     1712+></DD
     1713+><DT
     1714+><CODE
     1715+CLASS="OPTION"
     1716+>-v</CODE
     1717+></DT
     1718+><DD
     1719+><P
     1720+>Verbose mode.
     1721+  </P
     1722+></DD
     1723+><DT
     1724+><CODE
     1725+CLASS="OPTION"
     1726+>-u <TT
     1727+CLASS="REPLACEABLE"
     1728+><I
     1729+>user</I
     1730+></TT
     1731+></CODE
     1732+></DT
     1733+><DD
     1734+><P
     1735+>Run as another user.
     1736+<TT
     1737+CLASS="REPLACEABLE"
     1738+><I
     1739+>user</I
     1740+></TT
     1741+> can either be username or user ID.
     1742+  </P
     1743+></DD
     1744+><DT
     1745+><CODE
     1746+CLASS="OPTION"
     1747+>-p <TT
     1748+CLASS="REPLACEABLE"
     1749+><I
     1750+>pidfile</I
     1751+></TT
     1752+></CODE
     1753+></DT
     1754+><DD
     1755+><P
     1756+>File for process-id storage.
     1757+<TT
     1758+CLASS="REPLACEABLE"
     1759+><I
     1760+>user</I
     1761+></TT
     1762+> is required to be able to create the file.
     1763+  </P
     1764+></DD
     1765+></DL
     1766+></DIV
     1767+></DIV
     1768+><DIV
     1769+CLASS="REFSECT1"
     1770+><A
     1771+NAME="AEN1110"
     1772+></A
     1773+><H2
     1774+>SEE ALSO</H2
     1775+><P
     1776+><A
     1777+HREF="r3.html"
     1778+><SPAN
     1779+CLASS="CITEREFENTRY"
     1780+><SPAN
     1781+CLASS="REFENTRYTITLE"
     1782+>ping</SPAN
     1783+>(8)</SPAN
     1784+></A
     1785+>.</P
     1786+></DIV
     1787+><DIV
     1788+CLASS="REFSECT1"
     1789+><A
     1790+NAME="AEN1117"
     1791+></A
     1792+><H2
     1793+>AUTHOR</H2
     1794+><P
     1795+><B
     1796+CLASS="COMMAND"
     1797+>ninfod</B
     1798+> was written by USAGI/WIDE Project.</P
     1799+></DIV
     1800+><DIV
     1801+CLASS="REFSECT1"
     1802+><A
     1803+NAME="AEN1121"
     1804+></A
     1805+><H2
     1806+>COPYING</H2
     1807+><P
     1808+><P
     1809+CLASS="LITERALLAYOUT"
     1810+>Copyright&nbsp;(C)&nbsp;2012&nbsp;YOSHIFUJI&nbsp;Hideaki.<br>
     1811+Copyright&nbsp;(C)&nbsp;2002&nbsp;USAGI/WIDE&nbsp;Project.<br>
     1812+All&nbsp;rights&nbsp;reserved.<br>
     1813+<br>
     1814+Redistribution&nbsp;and&nbsp;use&nbsp;in&nbsp;source&nbsp;and&nbsp;binary&nbsp;forms,&nbsp;with&nbsp;or&nbsp;without<br>
     1815+modification,&nbsp;are&nbsp;permitted&nbsp;provided&nbsp;that&nbsp;the&nbsp;following&nbsp;conditions<br>
     1816+are&nbsp;met:<br>
     1817+1.&nbsp;Redistributions&nbsp;of&nbsp;source&nbsp;code&nbsp;must&nbsp;retain&nbsp;the&nbsp;above&nbsp;copyright<br>
     1818+&nbsp;&nbsp;&nbsp;notice,&nbsp;this&nbsp;list&nbsp;of&nbsp;conditions&nbsp;and&nbsp;the&nbsp;following&nbsp;disclaimer.<br>
     1819+2.&nbsp;Redistributions&nbsp;in&nbsp;binary&nbsp;form&nbsp;must&nbsp;reproduce&nbsp;the&nbsp;above&nbsp;copyright<br>
     1820+&nbsp;&nbsp;&nbsp;notice,&nbsp;this&nbsp;list&nbsp;of&nbsp;conditions&nbsp;and&nbsp;the&nbsp;following&nbsp;disclaimer&nbsp;in&nbsp;the<br>
     1821+&nbsp;&nbsp;&nbsp;documentation&nbsp;and/or&nbsp;other&nbsp;materials&nbsp;provided&nbsp;with&nbsp;the&nbsp;distribution.<br>
     1822+3.&nbsp;Neither&nbsp;the&nbsp;name&nbsp;of&nbsp;the&nbsp;project&nbsp;nor&nbsp;the&nbsp;names&nbsp;of&nbsp;its&nbsp;contributors<br>
     1823+&nbsp;&nbsp;&nbsp;may&nbsp;be&nbsp;used&nbsp;to&nbsp;endorse&nbsp;or&nbsp;promote&nbsp;products&nbsp;derived&nbsp;from&nbsp;this&nbsp;software<br>
     1824+&nbsp;&nbsp;&nbsp;without&nbsp;specific&nbsp;prior&nbsp;written&nbsp;permission.<br>
     1825+<br>
     1826+THIS&nbsp;SOFTWARE&nbsp;IS&nbsp;PROVIDED&nbsp;BY&nbsp;THE&nbsp;PROJECT&nbsp;AND&nbsp;CONTRIBUTORS&nbsp;``AS&nbsp;IS''&nbsp;AND<br>
     1827+ANY&nbsp;EXPRESS&nbsp;OR&nbsp;IMPLIED&nbsp;WARRANTIES,&nbsp;INCLUDING,&nbsp;BUT&nbsp;NOT&nbsp;LIMITED&nbsp;TO,&nbsp;THE<br>
     1828+IMPLIED&nbsp;WARRANTIES&nbsp;OF&nbsp;MERCHANTABILITY&nbsp;AND&nbsp;FITNESS&nbsp;FOR&nbsp;A&nbsp;PARTICULAR&nbsp;PURPOSE<br>
     1829+ARE&nbsp;DISCLAIMED.&nbsp;&nbsp;IN&nbsp;NO&nbsp;EVENT&nbsp;SHALL&nbsp;THE&nbsp;PROJECT&nbsp;OR&nbsp;CONTRIBUTORS&nbsp;BE&nbsp;LIABLE<br>
     1830+FOR&nbsp;ANY&nbsp;DIRECT,&nbsp;INDIRECT,&nbsp;INCIDENTAL,&nbsp;SPECIAL,&nbsp;EXEMPLARY,&nbsp;OR&nbsp;CONSEQUENTIAL<br>
     1831+DAMAGES&nbsp;(INCLUDING,&nbsp;BUT&nbsp;NOT&nbsp;LIMITED&nbsp;TO,&nbsp;PROCUREMENT&nbsp;OF&nbsp;SUBSTITUTE&nbsp;GOODS<br>
     1832+OR&nbsp;SERVICES;&nbsp;LOSS&nbsp;OF&nbsp;USE,&nbsp;DATA,&nbsp;OR&nbsp;PROFITS;&nbsp;OR&nbsp;BUSINESS&nbsp;INTERRUPTION)<br>
     1833+HOWEVER&nbsp;CAUSED&nbsp;AND&nbsp;ON&nbsp;ANY&nbsp;THEORY&nbsp;OF&nbsp;LIABILITY,&nbsp;WHETHER&nbsp;IN&nbsp;CONTRACT,&nbsp;STRICT<br>
     1834+LIABILITY,&nbsp;OR&nbsp;TORT&nbsp;(INCLUDING&nbsp;NEGLIGENCE&nbsp;OR&nbsp;OTHERWISE)&nbsp;ARISING&nbsp;IN&nbsp;ANY&nbsp;WAY<br>
     1835+OUT&nbsp;OF&nbsp;THE&nbsp;USE&nbsp;OF&nbsp;THIS&nbsp;SOFTWARE,&nbsp;EVEN&nbsp;IF&nbsp;ADVISED&nbsp;OF&nbsp;THE&nbsp;POSSIBILITY&nbsp;OF<br>
     1836+SUCH&nbsp;DAMAGE.</P
     1837+></P
     1838+></DIV
     1839+><DIV
     1840+CLASS="NAVFOOTER"
     1841+><HR
     1842+ALIGN="LEFT"
     1843+WIDTH="100%"><TABLE
     1844+SUMMARY="Footer navigation table"
     1845+WIDTH="100%"
     1846+BORDER="0"
     1847+CELLPADDING="0"
     1848+CELLSPACING="0"
     1849+><TR
     1850+><TD
     1851+WIDTH="33%"
     1852+ALIGN="left"
     1853+VALIGN="top"
     1854+><A
     1855+HREF="r983.html"
     1856+ACCESSKEY="P"
     1857+>Prev</A
     1858+></TD
     1859+><TD
     1860+WIDTH="34%"
     1861+ALIGN="center"
     1862+VALIGN="top"
     1863+><A
     1864+HREF="index.html"
     1865+ACCESSKEY="H"
     1866+>Home</A
     1867+></TD
     1868+><TD
     1869+WIDTH="33%"
     1870+ALIGN="right"
     1871+VALIGN="top"
     1872+><A
     1873+HREF="r1125.html"
     1874+ACCESSKEY="N"
     1875+>Next</A
     1876+></TD
     1877+></TR
     1878+><TR
     1879+><TD
     1880+WIDTH="33%"
     1881+ALIGN="left"
     1882+VALIGN="top"
     1883+>tftpd</TD
     1884+><TD
     1885+WIDTH="34%"
     1886+ALIGN="center"
     1887+VALIGN="top"
     1888+>&nbsp;</TD
     1889+><TD
     1890+WIDTH="33%"
     1891+ALIGN="right"
     1892+VALIGN="top"
     1893+>rdisc</TD
     1894+></TR
     1895+></TABLE
     1896+></DIV
     1897+></BODY
     1898+></HTML
     1899+>
     1900\ No newline at end of file
     1901diff -Naur iputils-s20121221.orig/doc/r1125.html iputils-s20121221/doc/r1125.html
     1902--- iputils-s20121221.orig/doc/r1125.html       1970-01-01 00:00:00.000000000 +0000
     1903+++ iputils-s20121221/doc/r1125.html    2013-01-04 10:38:35.000000000 +0000
     1904@@ -0,0 +1,567 @@
     1905+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
     1906+<HTML
     1907+><HEAD
     1908+><TITLE
     1909+>rdisc</TITLE
     1910+><META
     1911+NAME="GENERATOR"
     1912+CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
     1913+REL="HOME"
     1914+TITLE="System Manager's Manual: iputils"
     1915+HREF="index.html"><LINK
     1916+REL="PREVIOUS"
     1917+TITLE="ninfod"
     1918+HREF="r1056.html"><LINK
     1919+REL="NEXT"
     1920+TITLE="pg3"
     1921+HREF="r1269.html"></HEAD
     1922+><BODY
     1923+CLASS="REFENTRY"
     1924+BGCOLOR="#FFFFFF"
     1925+TEXT="#000000"
     1926+LINK="#0000FF"
     1927+VLINK="#840084"
     1928+ALINK="#0000FF"
     1929+><DIV
     1930+CLASS="NAVHEADER"
     1931+><TABLE
     1932+SUMMARY="Header navigation table"
     1933+WIDTH="100%"
     1934+BORDER="0"
     1935+CELLPADDING="0"
     1936+CELLSPACING="0"
     1937+><TR
     1938+><TH
     1939+COLSPAN="3"
     1940+ALIGN="center"
     1941+>System Manager's Manual: iputils</TH
     1942+></TR
     1943+><TR
     1944+><TD
     1945+WIDTH="10%"
     1946+ALIGN="left"
     1947+VALIGN="bottom"
     1948+><A
     1949+HREF="r1056.html"
     1950+ACCESSKEY="P"
     1951+>Prev</A
     1952+></TD
     1953+><TD
     1954+WIDTH="80%"
     1955+ALIGN="center"
     1956+VALIGN="bottom"
     1957+></TD
     1958+><TD
     1959+WIDTH="10%"
     1960+ALIGN="right"
     1961+VALIGN="bottom"
     1962+><A
     1963+HREF="r1269.html"
     1964+ACCESSKEY="N"
     1965+>Next</A
     1966+></TD
     1967+></TR
     1968+></TABLE
     1969+><HR
     1970+ALIGN="LEFT"
     1971+WIDTH="100%"></DIV
     1972+><H1
     1973+><A
    14541974+NAME="RDISC"
    14551975+></A
     
    14581978+CLASS="REFNAMEDIV"
    14591979+><A
    1460 +NAME="AEN1027"
     1980+NAME="AEN1130"
    14611981+></A
    14621982+><H2
     
    14661986+CLASS="REFSYNOPSISDIV"
    14671987+><A
    1468 +NAME="AEN1030"
     1988+NAME="AEN1133"
    14691989+></A
    14701990+><H2
     
    14761996+>  [<CODE
    14771997+CLASS="OPTION"
    1478 +>-abdfstvV</CODE
     1998+>-abdfrstvV</CODE
     1999+>] [-p <TT
     2000+CLASS="REPLACEABLE"
     2001+><I
     2002+>preference</I
     2003+></TT
     2004+>] [-T <TT
     2005+CLASS="REPLACEABLE"
     2006+><I
     2007+>max_interval</I
     2008+></TT
    14792009+>] [<TT
    14802010+CLASS="REPLACEABLE"
     
    14922022+CLASS="REFSECT1"
    14932023+><A
    1494 +NAME="AEN1039"
     2024+NAME="AEN1146"
    14952025+></A
    14962026+><H2
     
    15622092+CLASS="COMMAND"
    15632093+>gated</B
    1564 +>.</P
     2094+>.
     2095+Or, <B
     2096+CLASS="COMMAND"
     2097+>rdisc</B
     2098+> can act as responder, if compiled with -DRDISC_SERVER.</P
    15652099+></DIV
    15662100+><DIV
    15672101+CLASS="REFSECT1"
    15682102+><A
    1569 +NAME="AEN1055"
     2103+NAME="AEN1163"
    15702104+></A
    15712105+><H2
     
    16582192+><CODE
    16592193+CLASS="OPTION"
     2194+>-r</CODE
     2195+></DT
     2196+><DD
     2197+><P
     2198+>Responder mode, available only if compiled with -DRDISC_SERVER.
     2199+  </P
     2200+></DD
     2201+><DT
     2202+><CODE
     2203+CLASS="OPTION"
    16602204+>-s</CODE
    16612205+></DT
     
    16872231+><CODE
    16882232+CLASS="OPTION"
     2233+>-p <TT
     2234+CLASS="REPLACEABLE"
     2235+><I
     2236+>preference</I
     2237+></TT
     2238+></CODE
     2239+></DT
     2240+><DD
     2241+><P
     2242+>Set preference in advertisement.
     2243+Available only with -r option.
     2244+  </P
     2245+></DD
     2246+><DT
     2247+><CODE
     2248+CLASS="OPTION"
     2249+>-T <TT
     2250+CLASS="REPLACEABLE"
     2251+><I
     2252+>max_interval</I
     2253+></TT
     2254+></CODE
     2255+></DT
     2256+><DD
     2257+><P
     2258+>Set maximum advertisement interval in seconds.  Default is 600 secs.
     2259+Available only with -r option.
     2260+  </P
     2261+></DD
     2262+><DT
     2263+><CODE
     2264+CLASS="OPTION"
    16892265+>-t</CODE
    16902266+></DT
     
    17202296+CLASS="REFSECT1"
    17212297+><A
    1722 +NAME="AEN1110"
     2298+NAME="AEN1235"
    17232299+></A
    17242300+><H2
     
    17442320+CLASS="REFSECT1"
    17452321+><A
    1746 +NAME="AEN1115"
     2322+NAME="AEN1240"
    17472323+></A
    17482324+><H2
     
    17772353+CLASS="REFSECT1"
    17782354+><A
    1779 +NAME="AEN1128"
     2355+NAME="AEN1253"
    17802356+></A
    17812357+><H2
     
    17842360+>Deering, S.E.,ed "ICMP Router Discovery Messages",
    17852361+<A
    1786 +HREF="ftp://ftp.isi.edu/in-notes/rfc1256.txt"
     2362+HREF="http://tools.ietf.org/rfc/rfc1256.txt"
    17872363+TARGET="_top"
    17882364+>RFC1256</A
     
    17932369+CLASS="REFSECT1"
    17942370+><A
    1795 +NAME="AEN1132"
     2371+NAME="AEN1257"
    17962372+></A
    17972373+><H2
     
    18032379+> requires <CODE
    18042380+CLASS="CONSTANT"
    1805 +>CAP_NET_RAWIO</CODE
     2381+>CAP_NET_RAW</CODE
    18062382+> to listen
    18072383+and send ICMP messages and capability <CODE
     
    18142390+CLASS="REFSECT1"
    18152391+><A
    1816 +NAME="AEN1138"
     2392+NAME="AEN1263"
    18172393+></A
    18182394+><H2
     
    18492425+VALIGN="top"
    18502426+><A
    1851 +HREF="r949.html"
     2427+HREF="r1056.html"
    18522428+ACCESSKEY="P"
    18532429+>Prev</A
     
    18672443+VALIGN="top"
    18682444+><A
    1869 +HREF="r1144.html"
     2445+HREF="r1269.html"
    18702446+ACCESSKEY="N"
    18712447+>Next</A
     
    18772453+ALIGN="left"
    18782454+VALIGN="top"
    1879 +>tftpd</TD
     2455+>ninfod</TD
    18802456+><TD
    18812457+WIDTH="34%"
     
    18952471+>
    18962472\ No newline at end of file
    1897 diff -Naur iputils-s20101006.orig/doc/r1144.html iputils-s20101006/doc/r1144.html
    1898 --- iputils-s20101006.orig/doc/r1144.html       1969-12-31 19:00:00.000000000 -0500
    1899 +++ iputils-s20101006/doc/r1144.html    2011-01-08 20:09:49.631531431 -0500
     2473diff -Naur iputils-s20121221.orig/doc/r1269.html iputils-s20121221/doc/r1269.html
     2474--- iputils-s20121221.orig/doc/r1269.html       1970-01-01 00:00:00.000000000 +0000
     2475+++ iputils-s20121221/doc/r1269.html    2013-01-04 10:38:35.000000000 +0000
    19002476@@ -0,0 +1,428 @@
    1901 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     2477+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    19022478+<HTML
    19032479+><HEAD
     
    19122488+REL="PREVIOUS"
    19132489+TITLE="rdisc"
    1914 +HREF="r1022.html"></HEAD
     2490+HREF="r1125.html"></HEAD
    19152491+><BODY
    19162492+CLASS="REFENTRY"
     
    19402516+VALIGN="bottom"
    19412517+><A
    1942 +HREF="r1022.html"
     2518+HREF="r1125.html"
    19432519+ACCESSKEY="P"
    19442520+>Prev</A
     
    19672543+CLASS="REFNAMEDIV"
    19682544+><A
    1969 +NAME="AEN1149"
     2545+NAME="AEN1274"
    19702546+></A
    19712547+><H2
     
    19752551+CLASS="REFSYNOPSISDIV"
    19762552+><A
    1977 +NAME="AEN1152"
     2553+NAME="AEN1277"
    19782554+></A
    19792555+><H2
     
    20032579+CLASS="REFSECT1"
    20042580+><A
    2005 +NAME="AEN1161"
     2581+NAME="AEN1286"
    20062582+></A
    20072583+><H2
     
    20402616+CLASS="REFSECT1"
    20412617+><A
    2042 +NAME="AEN1172"
     2618+NAME="AEN1297"
    20432619+></A
    20442620+><H2
     
    20632639+>Name of Ethernet device to test. See
    20642640+<A
    2065 +HREF="r1144.html#PG3.WARNING"
     2641+HREF="r1269.html#PG3.WARNING"
    20662642+>warning</A
    20672643+> below.
     
    22182794+CLASS="REFSECT1"
    22192795+><A
    2220 +NAME="AEN1232"
     2796+NAME="AEN1357"
    22212797+></A
    22222798+><H2
     
    22352811+CLASS="REFSECT1"
    22362812+><A
    2237 +NAME="AEN1237"
     2813+NAME="AEN1362"
    22382814+></A
    22392815+><H2
     
    22512827+CLASS="REFSECT1"
    22522828+><A
    2253 +NAME="AEN1241"
     2829+NAME="AEN1366"
    22542830+></A
    22552831+><H2
     
    22862862+VALIGN="top"
    22872863+><A
    2288 +HREF="r1022.html"
     2864+HREF="r1125.html"
    22892865+ACCESSKEY="P"
    22902866+>Prev</A
     
    23282904+>
    23292905\ No newline at end of file
    2330 diff -Naur iputils-s20101006.orig/doc/r3.html iputils-s20101006/doc/r3.html
    2331 --- iputils-s20101006.orig/doc/r3.html  1969-12-31 19:00:00.000000000 -0500
    2332 +++ iputils-s20101006/doc/r3.html       2011-01-08 20:09:49.558814956 -0500
    2333 @@ -0,0 +1,1494 @@
    2334 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     2906diff -Naur iputils-s20121221.orig/doc/r3.html iputils-s20121221/doc/r3.html
     2907--- iputils-s20121221.orig/doc/r3.html  1970-01-01 00:00:00.000000000 +0000
     2908+++ iputils-s20121221/doc/r3.html       2013-01-04 10:38:35.000000000 +0000
     2909@@ -0,0 +1,1585 @@
     2910+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    23352911+<HTML
    23362912+><HEAD
     
    23482924+REL="NEXT"
    23492925+TITLE="arping"
    2350 +HREF="r437.html"></HEAD
     2926+HREF="r466.html"></HEAD
    23512927+><BODY
    23522928+CLASS="REFENTRY"
     
    23902966+VALIGN="bottom"
    23912967+><A
    2392 +HREF="r437.html"
     2968+HREF="r466.html"
    23932969+ACCESSKEY="N"
    23942970+>Next</A
     
    24253001+>  [<CODE
    24263002+CLASS="OPTION"
    2427 +>-LRUbdfnqrvVaAB</CODE
     3003+>-aAbBdDfhLnOqrRUvV</CODE
    24283004+>] [-c <TT
    24293005+CLASS="REPLACEABLE"
     
    24313007+>count</I
    24323008+></TT
     3009+>] [-F <TT
     3010+CLASS="REPLACEABLE"
     3011+><I
     3012+>flowlabel</I
     3013+></TT
     3014+>] [-i <TT
     3015+CLASS="REPLACEABLE"
     3016+><I
     3017+>interval</I
     3018+></TT
     3019+>] [-I <TT
     3020+CLASS="REPLACEABLE"
     3021+><I
     3022+>interface</I
     3023+></TT
     3024+>] [-l <TT
     3025+CLASS="REPLACEABLE"
     3026+><I
     3027+>preload</I
     3028+></TT
    24333029+>] [-m <TT
    24343030+CLASS="REPLACEABLE"
     
    24363032+>mark</I
    24373033+></TT
    2438 +>] [-i <TT
    2439 +CLASS="REPLACEABLE"
    2440 +><I
    2441 +>interval</I
    2442 +></TT
    2443 +>] [-l <TT
    2444 +CLASS="REPLACEABLE"
    2445 +><I
    2446 +>preload</I
     3034+>] [-M <TT
     3035+CLASS="REPLACEABLE"
     3036+><I
     3037+>pmtudisc_option</I
     3038+></TT
     3039+>] [-N <TT
     3040+CLASS="REPLACEABLE"
     3041+><I
     3042+>nodeinfo_option</I
     3043+></TT
     3044+>] [-w <TT
     3045+CLASS="REPLACEABLE"
     3046+><I
     3047+>deadline</I
     3048+></TT
     3049+>] [-W <TT
     3050+CLASS="REPLACEABLE"
     3051+><I
     3052+>timeout</I
    24473053+></TT
    24483054+>] [-p <TT
     
    24513057+>pattern</I
    24523058+></TT
     3059+>] [-Q <TT
     3060+CLASS="REPLACEABLE"
     3061+><I
     3062+>tos</I
     3063+></TT
    24533064+>] [-s <TT
    24543065+CLASS="REPLACEABLE"
     
    24563067+>packetsize</I
    24573068+></TT
     3069+>] [-S <TT
     3070+CLASS="REPLACEABLE"
     3071+><I
     3072+>sndbuf</I
     3073+></TT
    24583074+>] [-t <TT
    24593075+CLASS="REPLACEABLE"
     
    24613077+>ttl</I
    24623078+></TT
    2463 +>] [-w <TT
    2464 +CLASS="REPLACEABLE"
    2465 +><I
    2466 +>deadline</I
    2467 +></TT
    2468 +>] [-F <TT
    2469 +CLASS="REPLACEABLE"
    2470 +><I
    2471 +>flowlabel</I
    2472 +></TT
    2473 +>] [-I <TT
    2474 +CLASS="REPLACEABLE"
    2475 +><I
    2476 +>interface</I
    2477 +></TT
    2478 +>] [-M <TT
    2479 +CLASS="REPLACEABLE"
    2480 +><I
    2481 +>hint</I
    2482 +></TT
    2483 +>] [-N <TT
    2484 +CLASS="REPLACEABLE"
    2485 +><I
    2486 +>nioption</I
    2487 +></TT
    2488 +>] [-Q <TT
    2489 +CLASS="REPLACEABLE"
    2490 +><I
    2491 +>tos</I
    2492 +></TT
    2493 +>] [-S <TT
    2494 +CLASS="REPLACEABLE"
    2495 +><I
    2496 +>sndbuf</I
    2497 +></TT
    24983079+>] [-T <TT
    24993080+CLASS="REPLACEABLE"
    25003081+><I
    25013082+>timestamp option</I
    2502 +></TT
    2503 +>] [-W <TT
    2504 +CLASS="REPLACEABLE"
    2505 +><I
    2506 +>timeout</I
    25073083+></TT
    25083084+>] [<TT
     
    25413117+CLASS="COMMAND"
    25423118+>ping6</B
    2543 +> can also send Node Information Queries (RFC4620).</P
     3119+> is IPv6 version of <B
     3120+CLASS="COMMAND"
     3121+>ping</B
     3122+>, and can also send Node Information Queries (RFC4620).
     3123+Intermediate <TT
     3124+CLASS="REPLACEABLE"
     3125+><I
     3126+>hop</I
     3127+></TT
     3128+>s may not be allowed, because IPv6 source routing was deprecated (RFC5095).</P
    25443129+></DIV
    25453130+><DIV
    25463131+CLASS="REFSECT1"
    25473132+><A
    2548 +NAME="AEN59"
     3133+NAME="AEN61"
    25493134+></A
    25503135+><H2
     
    25733158+><P
    25743159+>Adaptive ping. Interpacket interval adapts to round-trip time, so that
    2575 +effectively not more than one (or more, if preload is set) unanswered probes
    2576 +present in the network. Minimal interval is 200msec for not super-user.
     3160+effectively not more than one (or more, if preload is set) unanswered probe
     3161+is present in the network. Minimal interval is 200msec for not super-user.
    25773162+On networks with low rtt this mode is essentially equivalent to flood mode. 
    25783163+  </P
     
    26033188+>ping</B
    26043189+> starts.
    2605 +  </P
    2606 +></DD
    2607 +><DT
    2608 +><CODE
    2609 +CLASS="OPTION"
    2610 +>-m <TT
    2611 +CLASS="REPLACEABLE"
    2612 +><I
    2613 +>mark</I
    2614 +></TT
    2615 +></CODE
    2616 +></DT
    2617 +><DD
    2618 +><P
    2619 +>use <TT
    2620 +CLASS="REPLACEABLE"
    2621 +><I
    2622 +>mark</I
    2623 +></TT
    2624 +> to tag the packets going out. This is useful
    2625 +for variety of reasons within the kernel such as using policy
    2626 +routing to select specific outbound processing.
    26273190+  </P
    26283191+></DD
     
    26873250+><CODE
    26883251+CLASS="OPTION"
    2689 +>-F <TT
    2690 +CLASS="REPLACEABLE"
    2691 +><I
    2692 +>flow label</I
    2693 +></TT
    2694 +></CODE
    2695 +></DT
    2696 +><DD
    2697 +><P
    2698 +>Allocate and set 20 bit flow label on echo request packets.
    2699 +(Only <B
    2700 +CLASS="COMMAND"
    2701 +>ping6</B
    2702 +>). If value is zero, kernel allocates random flow label.
     3252+>-D</CODE
     3253+></DT
     3254+><DD
     3255+><P
     3256+>Print timestamp (unix time + microseconds as in gettimeofday) before
     3257+each line.
    27033258+  </P
    27043259+></DD
     
    27223277+><CODE
    27233278+CLASS="OPTION"
     3279+>-F <TT
     3280+CLASS="REPLACEABLE"
     3281+><I
     3282+>flow label</I
     3283+></TT
     3284+></CODE
     3285+></DT
     3286+><DD
     3287+><P
     3288+><B
     3289+CLASS="COMMAND"
     3290+>ping6</B
     3291+> only.
     3292+Allocate and set 20 bit flow label (in hex) on echo request packets.
     3293+If value is zero, kernel allocates random flow label.
     3294+  </P
     3295+></DD
     3296+><DT
     3297+><CODE
     3298+CLASS="OPTION"
     3299+>-h</CODE
     3300+></DT
     3301+><DD
     3302+><P
     3303+>Show help.
     3304+  </P
     3305+></DD
     3306+><DT
     3307+><CODE
     3308+CLASS="OPTION"
    27243309+>-i <TT
    27253310+CLASS="REPLACEABLE"
     
    27483333+CLASS="REPLACEABLE"
    27493334+><I
    2750 +>interface address</I
     3335+>interface</I
    27513336+></TT
    27523337+></CODE
     
    27543339+><DD
    27553340+><P
    2756 +>Set source address to specified interface address. Argument
    2757 +may be numeric IP address or name of device. When pinging IPv6
    2758 +link-local address this option is required.
     3341+><TT
     3342+CLASS="REPLACEABLE"
     3343+><I
     3344+>interface</I
     3345+></TT
     3346+> is either an address, or an interface name.
     3347+If <TT
     3348+CLASS="REPLACEABLE"
     3349+><I
     3350+>interface</I
     3351+></TT
     3352+> is an address, it sets source address
     3353+to specified interface address.
     3354+If <TT
     3355+CLASS="REPLACEABLE"
     3356+><I
     3357+>interface</I
     3358+></TT
     3359+> in an interface name, it sets
     3360+source interface to specified interface.
     3361+For <B
     3362+CLASS="COMMAND"
     3363+>ping6</B
     3364+>, when doing ping to a link-local scope
     3365+address, link specification (by the '%'-notation in
     3366+<TT
     3367+CLASS="REPLACEABLE"
     3368+><I
     3369+>destination</I
     3370+></TT
     3371+>, or by this option) is required.
    27593372+  </P
    27603373+></DD
     
    27983411+><CODE
    27993412+CLASS="OPTION"
     3413+>-m <TT
     3414+CLASS="REPLACEABLE"
     3415+><I
     3416+>mark</I
     3417+></TT
     3418+></CODE
     3419+></DT
     3420+><DD
     3421+><P
     3422+>use <TT
     3423+CLASS="REPLACEABLE"
     3424+><I
     3425+>mark</I
     3426+></TT
     3427+> to tag the packets going out. This is useful
     3428+for variety of reasons within the kernel such as using policy
     3429+routing to select specific outbound processing.
     3430+  </P
     3431+></DD
     3432+><DT
     3433+><CODE
     3434+CLASS="OPTION"
     3435+>-M <TT
     3436+CLASS="REPLACEABLE"
     3437+><I
     3438+>pmtudisc_opt</I
     3439+></TT
     3440+></CODE
     3441+></DT
     3442+><DD
     3443+><P
     3444+>Select Path MTU Discovery strategy.
     3445+<TT
     3446+CLASS="REPLACEABLE"
     3447+><I
     3448+>pmtudisc_option</I
     3449+></TT
     3450+> may be either <TT
     3451+CLASS="REPLACEABLE"
     3452+><I
     3453+>do</I
     3454+></TT
     3455+>
     3456+(prohibit fragmentation, even local one),
     3457+<TT
     3458+CLASS="REPLACEABLE"
     3459+><I
     3460+>want</I
     3461+></TT
     3462+> (do PMTU discovery, fragment locally when packet size
     3463+is large), or <TT
     3464+CLASS="REPLACEABLE"
     3465+><I
     3466+>dont</I
     3467+></TT
     3468+> (do not set DF flag).
     3469+  </P
     3470+></DD
     3471+><DT
     3472+><CODE
     3473+CLASS="OPTION"
    28003474+>-N <TT
    28013475+CLASS="REPLACEABLE"
    28023476+><I
    2803 +>nioption</I
     3477+>nodeinfo_option</I
    28043478+></TT
    28053479+></CODE
     
    28073481+><DD
    28083482+><P
    2809 +>Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request.
     3483+><B
     3484+CLASS="COMMAND"
     3485+>ping6</B
     3486+> only.
     3487+Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request.
    28103488+   <P
    28113489+></P
     
    28163494+><CODE
    28173495+CLASS="OPTION"
    2818 +>name</CODE
    2819 +></DT
    2820 +><DD
    2821 +><P
    2822 +>Queries for Node Names.</P
     3496+>help</CODE
     3497+></DT
     3498+><DD
     3499+><P
     3500+>Show help for NI support.</P
    28233501+></DD
    28243502+></DL
     
    28333511+><CODE
    28343512+CLASS="OPTION"
     3513+>name</CODE
     3514+></DT
     3515+><DD
     3516+><P
     3517+>Queries for Node Names.</P
     3518+></DD
     3519+></DL
     3520+></DIV
     3521+>
     3522+   <P
     3523+></P
     3524+><DIV
     3525+CLASS="VARIABLELIST"
     3526+><DL
     3527+><DT
     3528+><CODE
     3529+CLASS="OPTION"
    28353530+>ipv6</CODE
    28363531+></DT
     
    30523747+><CODE
    30533748+CLASS="OPTION"
     3749+>-O</CODE
     3750+></DT
     3751+><DD
     3752+><P
     3753+>Report outstanding ICMP ECHO reply before sending next packet.
     3754+This is useful together with the timestamp <CODE
     3755+CLASS="OPTION"
     3756+>-D</CODE
     3757+> to
     3758+log output to a diagnostic file and search for missing answers.
     3759+  </P
     3760+></DD
     3761+><DT
     3762+><CODE
     3763+CLASS="OPTION"
    30543764+>-p <TT
    30553765+CLASS="REPLACEABLE"
     
    30733783+><CODE
    30743784+CLASS="OPTION"
    3075 +>-D</CODE
    3076 +></DT
    3077 +><DD
    3078 +><P
    3079 +>Print timestamp (unix time + microseconds as in gettimeofday) before
    3080 +each line.
    3081 +  </P
    3082 +></DD
    3083 +><DT
    3084 +><CODE
    3085 +CLASS="OPTION"
    3086 +>-Q <TT
    3087 +CLASS="REPLACEABLE"
    3088 +><I
    3089 +>tos</I
    3090 +></TT
    3091 +></CODE
    3092 +></DT
    3093 +><DD
    3094 +><P
    3095 +>Set Quality of Service -related bits in ICMP datagrams. 
    3096 +<TT
    3097 +CLASS="REPLACEABLE"
    3098 +><I
    3099 +>tos</I
    3100 +></TT
    3101 +> can be either decimal or hex number.
    3102 +Traditionally (RFC1349), these have been interpreted as: 0 for reserved
    3103 +(currently being redefined as congestion control), 1-4 for Type of Service
    3104 +and 5-7 for Precedence.
    3105 +Possible settings for Type of Service are: minimal cost: 0x02,
    3106 +reliability: 0x04, throughput: 0x08, low delay: 0x10.  Multiple TOS bits
    3107 +should not be set simultaneously.  Possible settings for
    3108 +special Precedence range from priority (0x20) to net control (0xe0).  You
    3109 +must be root (<CODE
    3110 +CLASS="CONSTANT"
    3111 +>CAP_NET_ADMIN</CODE
    3112 +> capability) to use Critical or
    3113 +higher precedence value.  You cannot set
    3114 +bit 0x01 (reserved) unless ECN has been enabled in the kernel.
    3115 +In RFC2474, these fields has been redefined as 8-bit Differentiated
    3116 +Services (DS), consisting of: bits 0-1 of separate data (ECN will be used,
    3117 +here), and bits 2-7 of Differentiated Services Codepoint (DSCP).
    3118 +  </P
    3119 +></DD
    3120 +><DT
    3121 +><CODE
    3122 +CLASS="OPTION"
    31233785+>-q</CODE
    31243786+></DT
     
    31333795+><CODE
    31343796+CLASS="OPTION"
    3135 +>-R</CODE
    3136 +></DT
    3137 +><DD
    3138 +><P
    3139 +>Record route.
    3140 +Includes the RECORD_ROUTE option in the ECHO_REQUEST
    3141 +packet and displays the route buffer on returned packets.
    3142 +Note that the IP header is only large enough for nine such routes.
    3143 +Many hosts ignore or discard this option.
    3144 +  </P
     3797+>-Q <TT
     3798+CLASS="REPLACEABLE"
     3799+><I
     3800+>tos</I
     3801+></TT
     3802+></CODE
     3803+></DT
     3804+><DD
     3805+><P
     3806+>      Set Quality of Service -related bits in ICMP datagrams.
     3807+       <TT
     3808+CLASS="REPLACEABLE"
     3809+><I
     3810+>tos</I
     3811+></TT
     3812+> can be decimal (<B
     3813+CLASS="COMMAND"
     3814+>ping</B
     3815+> only) or hex number.
     3816+       </P
     3817+><P
     3818+>      In RFC2474, these fields are interpreted as 8-bit Differentiated
     3819+       Services (DS), consisting of: bits 0-1 (2 lowest bits) of separate
     3820+       data, and bits 2-7 (highest 6 bits) of Differentiated Services
     3821+       Codepoint (DSCP).  In RFC2481 and RFC3168, bits 0-1 are used for ECN.
     3822+       </P
     3823+><P
     3824+>      Historically (RFC1349, obsoleted by RFC2474), these were interpreted
     3825+       as: bit 0 (lowest bit) for reserved (currently being redefined as
     3826+       congestion control), 1-4 for Type of Service and bits 5-7
     3827+       (highest bits) for Precedence.
     3828+   </P
    31453829+></DD
    31463830+><DT
     
    31653849+><CODE
    31663850+CLASS="OPTION"
     3851+>-R</CODE
     3852+></DT
     3853+><DD
     3854+><P
     3855+><B
     3856+CLASS="COMMAND"
     3857+>ping</B
     3858+> only.
     3859+Record route.
     3860+Includes the RECORD_ROUTE option in the ECHO_REQUEST
     3861+packet and displays the route buffer on returned packets.
     3862+Note that the IP header is only large enough for nine such routes.
     3863+Many hosts ignore or discard this option.
     3864+  </P
     3865+></DD
     3866+><DT
     3867+><CODE
     3868+CLASS="OPTION"
    31673869+>-s <TT
    31683870+CLASS="REPLACEABLE"
     
    32073909+><DD
    32083910+><P
    3209 +>Set the IP Time to Live.
     3911+><B
     3912+CLASS="COMMAND"
     3913+>ping</B
     3914+> only.
     3915+Set the IP Time to Live.
    32103916+  </P
    32113917+></DD
     
    32483954+>
    32493955+(timestamp prespecified hops).
    3250 +  </P
    3251 +></DD
    3252 +><DT
    3253 +><CODE
    3254 +CLASS="OPTION"
    3255 +>-M <TT
    3256 +CLASS="REPLACEABLE"
    3257 +><I
    3258 +>hint</I
    3259 +></TT
    3260 +></CODE
    3261 +></DT
    3262 +><DD
    3263 +><P
    3264 +>Select Path MTU Discovery strategy.
    3265 +<TT
    3266 +CLASS="REPLACEABLE"
    3267 +><I
    3268 +>hint</I
    3269 +></TT
    3270 +> may be either <TT
    3271 +CLASS="REPLACEABLE"
    3272 +><I
    3273 +>do</I
    3274 +></TT
    3275 +>
    3276 +(prohibit fragmentation, even local one),
    3277 +<TT
    3278 +CLASS="REPLACEABLE"
    3279 +><I
    3280 +>want</I
    3281 +></TT
    3282 +> (do PMTU discovery, fragment locally when packet size
    3283 +is large), or <TT
    3284 +CLASS="REPLACEABLE"
    3285 +><I
    3286 +>dont</I
    3287 +></TT
    3288 +> (do not set DF flag).
    32893956+  </P
    32903957+></DD
     
    33974064+><P
    33984065+>Time to wait for a response, in seconds. The option affects only timeout
    3399 +in absense of any responses, otherwise <B
     4066+in absence of any responses, otherwise <B
    34004067+CLASS="COMMAND"
    34014068+>ping</B
     
    34884155+CLASS="REFSECT1"
    34894156+><A
    3490 +NAME="AEN362"
     4157+NAME="AEN391"
    34914158+></A
    34924159+><H2
     
    35204187+CLASS="REFSECT1"
    35214188+><A
    3522 +NAME="AEN369"
     4189+NAME="AEN398"
    35234190+></A
    35244191+><H2
     
    35454212+CLASS="REFSECT1"
    35464213+><A
    3547 +NAME="AEN375"
     4214+NAME="AEN404"
    35484215+></A
    35494216+><H2
     
    35794246+CLASS="REFSECT1"
    35804247+><A
    3581 +NAME="AEN381"
     4248+NAME="AEN410"
    35824249+></A
    35834250+><H2
     
    36134280+>.</P
    36144281+><P
    3615 +>In normal operation ping prints the ttl value from the packet it receives.
     4282+>In normal operation ping prints the TTL value from the packet it receives.
    36164283+When a remote system receives a ping packet, it can do one of three things
    36174284+with the TTL field in its response:</P
     
    36614328+CLASS="REFSECT1"
    36624329+><A
    3663 +NAME="AEN403"
     4330+NAME="AEN432"
    36644331+></A
    36654332+><H2
     
    36914358+CLASS="REFSECT1"
    36924359+><A
    3693 +NAME="AEN412"
     4360+NAME="AEN441"
    36944361+></A
    36954362+><H2
     
    37144381+CLASS="REFSECT1"
    37154382+><A
    3716 +NAME="AEN421"
     4383+NAME="AEN450"
    37174384+></A
    37184385+><H2
     
    37294396+CLASS="REFSECT1"
    37304397+><A
    3731 +NAME="AEN426"
     4398+NAME="AEN455"
    37324399+></A
    37334400+><H2
     
    37394406+> requires <CODE
    37404407+CLASS="CONSTANT"
    3741 +>CAP_NET_RAWIO</CODE
     4408+>CAP_NET_RAW</CODE
    37424409+> capability
    37434410+to be executed. It may be used as set-uid root.</P
     
    37464413+CLASS="REFSECT1"
    37474414+><A
    3748 +NAME="AEN431"
     4415+NAME="AEN460"
    37494416+></A
    37504417+><H2
     
    37994466+VALIGN="top"
    38004467+><A
    3801 +HREF="r437.html"
     4468+HREF="r466.html"
    38024469+ACCESSKEY="N"
    38034470+>Next</A
     
    38274494+>
    38284495\ No newline at end of file
    3829 diff -Naur iputils-s20101006.orig/doc/r437.html iputils-s20101006/doc/r437.html
    3830 --- iputils-s20101006.orig/doc/r437.html        1969-12-31 19:00:00.000000000 -0500
    3831 +++ iputils-s20101006/doc/r437.html     2011-01-08 20:09:49.571531343 -0500
    3832 @@ -0,0 +1,598 @@
    3833 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     4496diff -Naur iputils-s20121221.orig/doc/r466.html iputils-s20121221/doc/r466.html
     4497--- iputils-s20121221.orig/doc/r466.html        1970-01-01 00:00:00.000000000 +0000
     4498+++ iputils-s20121221/doc/r466.html     2013-01-04 10:38:35.000000000 +0000
     4499@@ -0,0 +1,597 @@
     4500+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    38344501+<HTML
    38354502+><HEAD
     
    38474514+REL="NEXT"
    38484515+TITLE="clockdiff"
    3849 +HREF="r596.html"></HEAD
     4516+HREF="r625.html"></HEAD
    38504517+><BODY
    38514518+CLASS="REFENTRY"
     
    38894556+VALIGN="bottom"
    38904557+><A
    3891 +HREF="r596.html"
     4558+HREF="r625.html"
    38924559+ACCESSKEY="N"
    38934560+>Next</A
     
    39064573+CLASS="REFNAMEDIV"
    39074574+><A
    3908 +NAME="AEN442"
     4575+NAME="AEN471"
    39094576+></A
    39104577+><H2
     
    39144581+CLASS="REFSYNOPSISDIV"
    39154582+><A
    3916 +NAME="AEN445"
     4583+NAME="AEN474"
    39174584+></A
    39184585+><H2
     
    39554622+CLASS="REFSECT1"
    39564623+><A
    3957 +NAME="AEN460"
     4624+NAME="AEN489"
    39584625+></A
    39594626+><H2
     
    39814648+CLASS="REFSECT1"
    39824649+><A
    3983 +NAME="AEN466"
     4650+NAME="AEN495"
    39844651+></A
    39854652+><H2
     
    40414708+packets. With
    40424709+<A
    4043 +HREF="r437.html#ARPING.DEADLINE"
     4710+HREF="r466.html#ARPING.DEADLINE"
    40444711+><TT
    40454712+CLASS="REPLACEABLE"
     
    40704737+>Duplicate address detection mode (DAD). See
    40714738+<A
    4072 +HREF="ftp://ftp.isi.edu/in-notes/rfc2131.txt"
     4739+HREF="http://tools.ietf.org/rfc/rfc2131.txt"
    40734740+TARGET="_top"
    40744741+>RFC2131, 4.4.1</A
     
    41024769+><DD
    41034770+><P
    4104 +>Name of network device where to send ARP REQUEST packets. This option
    4105 +is required.
     4771+>Name of network device where to send ARP REQUEST packets.
    41064772+  </P
    41074773+></DD
     
    42294895+does not stop after
    42304896+<A
    4231 +HREF="r437.html#ARPING.COUNT"
     4897+HREF="r466.html#ARPING.COUNT"
    42324898+><TT
    42334899+CLASS="REPLACEABLE"
     
    42394905+packet are sent, it waits either for
    42404906+<A
    4241 +HREF="r437.html#ARPING.DEADLINE"
     4907+HREF="r466.html#ARPING.DEADLINE"
    42424908+><TT
    42434909+CLASS="REPLACEABLE"
     
    42494915+expire or until
    42504916+<A
    4251 +HREF="r437.html#ARPING.COUNT"
     4917+HREF="r466.html#ARPING.COUNT"
    42524918+><TT
    42534919+CLASS="REPLACEABLE"
     
    42664932+CLASS="REFSECT1"
    42674933+><A
    4268 +NAME="AEN564"
     4934+NAME="AEN593"
    42694935+></A
    42704936+><H2
     
    42824948+>,
    42834949+<A
    4284 +HREF="r596.html"
     4950+HREF="r625.html"
    42854951+><SPAN
    42864952+CLASS="CITEREFENTRY"
     
    42924958+>,
    42934959+<A
    4294 +HREF="r790.html"
     4960+HREF="r819.html"
    42954961+><SPAN
    42964962+CLASS="CITEREFENTRY"
     
    43054971+CLASS="REFSECT1"
    43064972+><A
    4307 +NAME="AEN579"
     4973+NAME="AEN608"
    43084974+></A
    43094975+><H2
     
    43314997+CLASS="REFSECT1"
    43324998+><A
    4333 +NAME="AEN585"
     4999+NAME="AEN614"
    43345000+></A
    43355001+><H2
     
    43415007+> requires <CODE
    43425008+CLASS="CONSTANT"
    4343 +>CAP_NET_RAWIO</CODE
     5009+>CAP_NET_RAW</CODE
    43445010+> capability
    43455011+to be executed. It is not recommended to be used as set-uid root,
     
    43495015+CLASS="REFSECT1"
    43505016+><A
    4351 +NAME="AEN590"
     5017+NAME="AEN619"
    43525018+></A
    43535019+><H2
     
    44025068+VALIGN="top"
    44035069+><A
    4404 +HREF="r596.html"
     5070+HREF="r625.html"
    44055071+ACCESSKEY="N"
    44065072+>Next</A
     
    44305096+>
    44315097\ No newline at end of file
    4432 diff -Naur iputils-s20101006.orig/doc/r596.html iputils-s20101006/doc/r596.html
    4433 --- iputils-s20101006.orig/doc/r596.html        1969-12-31 19:00:00.000000000 -0500
    4434 +++ iputils-s20101006/doc/r596.html     2011-01-08 20:09:49.582999920 -0500
     5098diff -Naur iputils-s20121221.orig/doc/r625.html iputils-s20121221/doc/r625.html
     5099--- iputils-s20121221.orig/doc/r625.html        1970-01-01 00:00:00.000000000 +0000
     5100+++ iputils-s20121221/doc/r625.html     2013-01-04 10:38:35.000000000 +0000
    44355101@@ -0,0 +1,428 @@
    4436 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     5102+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    44375103+<HTML
    44385104+><HEAD
     
    44475113+REL="PREVIOUS"
    44485114+TITLE="arping"
    4449 +HREF="r437.html"><LINK
     5115+HREF="r466.html"><LINK
    44505116+REL="NEXT"
    44515117+TITLE="rarpd"
    4452 +HREF="r691.html"></HEAD
     5118+HREF="r720.html"></HEAD
    44535119+><BODY
    44545120+CLASS="REFENTRY"
     
    44785144+VALIGN="bottom"
    44795145+><A
    4480 +HREF="r437.html"
     5146+HREF="r466.html"
    44815147+ACCESSKEY="P"
    44825148+>Prev</A
     
    44925158+VALIGN="bottom"
    44935159+><A
    4494 +HREF="r691.html"
     5160+HREF="r720.html"
    44955161+ACCESSKEY="N"
    44965162+>Next</A
     
    45095175+CLASS="REFNAMEDIV"
    45105176+><A
    4511 +NAME="AEN601"
     5177+NAME="AEN630"
    45125178+></A
    45135179+><H2
     
    45175183+CLASS="REFSYNOPSISDIV"
    45185184+><A
    4519 +NAME="AEN604"
     5185+NAME="AEN633"
    45205186+></A
    45215187+><H2
     
    45415207+CLASS="REFSECT1"
    45425208+><A
    4543 +NAME="AEN613"
     5209+NAME="AEN642"
    45445210+></A
    45455211+><H2
     
    45575223+> with 1 msec resolution using ICMP TIMESTAMP
    45585224+<A
    4559 +HREF="r596.html#CLOCKDIFF.ICMP-TIMESTAMP"
     5225+HREF="r625.html#CLOCKDIFF.ICMP-TIMESTAMP"
    45605226+>[2]</A
    45615227+>
    45625228+packets or, optionally, IP TIMESTAMP option
    45635229+<A
    4564 +HREF="r596.html#CLOCKDIFF.IP-TIMESTAMP"
     5230+HREF="r625.html#CLOCKDIFF.IP-TIMESTAMP"
    45655231+>[3]</A
    45665232+>
    45675233+option added to ICMP ECHO.
    45685234+<A
    4569 +HREF="r596.html#CLOCKDIFF.ICMP-ECHO"
     5235+HREF="r625.html#CLOCKDIFF.ICMP-ECHO"
    45705236+>[1]</A
    45715237+></P
     
    45745240+CLASS="REFSECT1"
    45755241+><A
    4576 +NAME="AEN621"
     5242+NAME="AEN650"
    45775243+></A
    45785244+><H2
     
    46205286+CLASS="REFSECT1"
    46215287+><A
    4622 +NAME="AEN636"
     5288+NAME="AEN665"
    46235289+></A
    46245290+><H2
     
    46585324+CLASS="REFSECT1"
    46595325+><A
    4660 +NAME="AEN647"
     5326+NAME="AEN676"
    46615327+></A
    46625328+><H2
     
    46745340+>,
    46755341+<A
    4676 +HREF="r437.html"
     5342+HREF="r466.html"
    46775343+><SPAN
    46785344+CLASS="CITEREFENTRY"
     
    46845350+>,
    46855351+<A
    4686 +HREF="r790.html"
     5352+HREF="r819.html"
    46875353+><SPAN
    46885354+CLASS="CITEREFENTRY"
     
    46975363+CLASS="REFSECT1"
    46985364+><A
    4699 +NAME="AEN662"
     5365+NAME="AEN691"
    47005366+></A
    47015367+><H2
     
    47075373+>ICMP ECHO,
    47085374+<A
    4709 +HREF="ftp://ftp.isi.edu/in-notes/rfc792.txt"
     5375+HREF="http://tools.ietf.org/rfc/rfc792.txt"
    47105376+TARGET="_top"
    47115377+>RFC0792, page 14</A
     
    47175383+>ICMP TIMESTAMP,
    47185384+<A
    4719 +HREF="ftp://ftp.isi.edu/in-notes/rfc792.txt"
     5385+HREF="http://tools.ietf.org/rfc/rfc792.txt"
    47205386+TARGET="_top"
    47215387+>RFC0792, page 16</A
     
    47275393+>IP TIMESTAMP option,
    47285394+<A
    4729 +HREF="ftp://ftp.isi.edu/in-notes/rfc791.txt"
     5395+HREF="http://tools.ietf.org/rfc/rfc791.txt"
    47305396+TARGET="_top"
    47315397+>RFC0791, 3.1, page 16</A
     
    47355401+CLASS="REFSECT1"
    47365402+><A
    4737 +NAME="AEN673"
     5403+NAME="AEN702"
    47385404+></A
    47395405+><H2
     
    47655431+CLASS="REFSECT1"
    47665432+><A
    4767 +NAME="AEN680"
     5433+NAME="AEN709"
    47685434+></A
    47695435+><H2
     
    47755441+> requires <CODE
    47765442+CLASS="CONSTANT"
    4777 +>CAP_NET_RAWIO</CODE
     5443+>CAP_NET_RAW</CODE
    47785444+> capability
    47795445+to be executed. It is safe to be used as set-uid root.</P
     
    47825448+CLASS="REFSECT1"
    47835449+><A
    4784 +NAME="AEN685"
     5450+NAME="AEN714"
    47855451+></A
    47865452+><H2
     
    48175483+VALIGN="top"
    48185484+><A
    4819 +HREF="r437.html"
     5485+HREF="r466.html"
    48205486+ACCESSKEY="P"
    48215487+>Prev</A
     
    48355501+VALIGN="top"
    48365502+><A
    4837 +HREF="r691.html"
     5503+HREF="r720.html"
    48385504+ACCESSKEY="N"
    48395505+>Next</A
     
    48635529+>
    48645530\ No newline at end of file
    4865 diff -Naur iputils-s20101006.orig/doc/r691.html iputils-s20101006/doc/r691.html
    4866 --- iputils-s20101006.orig/doc/r691.html        1969-12-31 19:00:00.000000000 -0500
    4867 +++ iputils-s20101006/doc/r691.html     2011-01-08 20:09:49.590918871 -0500
     5531diff -Naur iputils-s20121221.orig/doc/r720.html iputils-s20121221/doc/r720.html
     5532--- iputils-s20121221.orig/doc/r720.html        1970-01-01 00:00:00.000000000 +0000
     5533+++ iputils-s20121221/doc/r720.html     2013-01-04 10:38:35.000000000 +0000
    48685534@@ -0,0 +1,431 @@
    4869 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     5535+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    48705536+<HTML
    48715537+><HEAD
     
    48805546+REL="PREVIOUS"
    48815547+TITLE="clockdiff"
    4882 +HREF="r596.html"><LINK
     5548+HREF="r625.html"><LINK
    48835549+REL="NEXT"
    48845550+TITLE="tracepath"
    4885 +HREF="r790.html"></HEAD
     5551+HREF="r819.html"></HEAD
    48865552+><BODY
    48875553+CLASS="REFENTRY"
     
    49115577+VALIGN="bottom"
    49125578+><A
    4913 +HREF="r596.html"
     5579+HREF="r625.html"
    49145580+ACCESSKEY="P"
    49155581+>Prev</A
     
    49255591+VALIGN="bottom"
    49265592+><A
    4927 +HREF="r790.html"
     5593+HREF="r819.html"
    49285594+ACCESSKEY="N"
    49295595+>Next</A
     
    49425608+CLASS="REFNAMEDIV"
    49435609+><A
    4944 +NAME="AEN696"
     5610+NAME="AEN725"
    49455611+></A
    49465612+><H2
     
    49505616+CLASS="REFSYNOPSISDIV"
    49515617+><A
    4952 +NAME="AEN699"
     5618+NAME="AEN728"
    49535619+></A
    49545620+><H2
     
    49765642+CLASS="REFSECT1"
    49775643+><A
    4978 +NAME="AEN708"
     5644+NAME="AEN737"
    49795645+></A
    49805646+><H2
     
    49835649+>Listens
    49845650+<A
    4985 +HREF="ftp://ftp.isi.edu/in-notes/rfc903.txt"
     5651+HREF="http://tools.ietf.org/rfc/rfc903.txt"
    49865652+TARGET="_top"
    49875653+>RARP</A
     
    50205686+CLASS="REFSECT1"
    50215687+><A
    5022 +NAME="AEN719"
     5688+NAME="AEN748"
    50235689+></A
    50245690+><H2
     
    50275693+>This facility is deeply obsoleted by
    50285694+<A
    5029 +HREF="ftp://ftp.isi.edu/in-notes/rfc951.txt"
     5695+HREF="http://tools.ietf.org/rfc/rfc951.txt"
    50305696+TARGET="_top"
    50315697+>BOOTP</A
     
    50335699+and later
    50345700+<A
    5035 +HREF="ftp://ftp.isi.edu/in-notes/rfc2131.txt"
     5701+HREF="http://tools.ietf.org/rfc/rfc2131.txt"
    50365702+TARGET="_top"
    50375703+>DHCP</A
     
    50425708+CLASS="REFSECT1"
    50435709+><A
    5044 +NAME="AEN724"
     5710+NAME="AEN753"
    50455711+></A
    50465712+><H2
     
    51385804+CLASS="REFSECT1"
    51395805+><A
    5140 +NAME="AEN761"
     5806+NAME="AEN790"
    51415807+></A
    51425808+><H2
     
    51445810+><P
    51455811+><A
    5146 +HREF="r437.html"
     5812+HREF="r466.html"
    51475813+><SPAN
    51485814+CLASS="CITEREFENTRY"
     
    51545820+>,
    51555821+<A
    5156 +HREF="r949.html"
     5822+HREF="r983.html"
    51575823+><SPAN
    51585824+CLASS="CITEREFENTRY"
     
    51675833+CLASS="REFSECT1"
    51685834+><A
    5169 +NAME="AEN772"
     5835+NAME="AEN801"
    51705836+></A
    51715837+><H2
     
    51935859+CLASS="REFSECT1"
    51945860+><A
    5195 +NAME="AEN778"
     5861+NAME="AEN807"
    51965862+></A
    51975863+><H2
     
    52035869+> requires <CODE
    52045870+CLASS="CONSTANT"
    5205 +>CAP_NET_RAWIO</CODE
     5871+>CAP_NET_RAW</CODE
    52065872+> capability
    52075873+to listen and send RARP and ARP packets. It also needs <CODE
     
    52185884+CLASS="REFSECT1"
    52195885+><A
    5220 +NAME="AEN784"
     5886+NAME="AEN813"
    52215887+></A
    52225888+><H2
     
    52535919+VALIGN="top"
    52545920+><A
    5255 +HREF="r596.html"
     5921+HREF="r625.html"
    52565922+ACCESSKEY="P"
    52575923+>Prev</A
     
    52715937+VALIGN="top"
    52725938+><A
    5273 +HREF="r790.html"
     5939+HREF="r819.html"
    52745940+ACCESSKEY="N"
    52755941+>Next</A
     
    52995965+>
    53005966\ No newline at end of file
    5301 diff -Naur iputils-s20101006.orig/doc/r790.html iputils-s20101006/doc/r790.html
    5302 --- iputils-s20101006.orig/doc/r790.html        1969-12-31 19:00:00.000000000 -0500
    5303 +++ iputils-s20101006/doc/r790.html     2011-01-08 20:09:49.602668583 -0500
    5304 @@ -0,0 +1,426 @@
    5305 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     5967diff -Naur iputils-s20121221.orig/doc/r819.html iputils-s20121221/doc/r819.html
     5968--- iputils-s20121221.orig/doc/r819.html        1970-01-01 00:00:00.000000000 +0000
     5969+++ iputils-s20121221/doc/r819.html     2013-01-04 10:38:35.000000000 +0000
     5970@@ -0,0 +1,436 @@
     5971+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    53065972+<HTML
    53075973+><HEAD
     
    53165982+REL="PREVIOUS"
    53175983+TITLE="rarpd"
    5318 +HREF="r691.html"><LINK
     5984+HREF="r720.html"><LINK
    53195985+REL="NEXT"
    53205986+TITLE="traceroute6"
    5321 +HREF="r884.html"></HEAD
     5987+HREF="r918.html"></HEAD
    53225988+><BODY
    53235989+CLASS="REFENTRY"
     
    53476013+VALIGN="bottom"
    53486014+><A
    5349 +HREF="r691.html"
     6015+HREF="r720.html"
    53506016+ACCESSKEY="P"
    53516017+>Prev</A
     
    53616027+VALIGN="bottom"
    53626028+><A
    5363 +HREF="r884.html"
     6029+HREF="r918.html"
    53646030+ACCESSKEY="N"
    53656031+>Next</A
     
    53786044+CLASS="REFNAMEDIV"
    53796045+><A
    5380 +NAME="AEN795"
     6046+NAME="AEN824"
    53816047+></A
    53826048+><H2
     
    53866052+CLASS="REFSYNOPSISDIV"
    53876053+><A
    5388 +NAME="AEN798"
     6054+NAME="AEN827"
    53896055+></A
    53906056+><H2
     
    53996065+>pktlen</I
    54006066+></TT
     6067+>] [-p <TT
     6068+CLASS="REPLACEABLE"
     6069+><I
     6070+>port</I
     6071+></TT
    54016072+>] {<TT
    54026073+CLASS="REPLACEABLE"
     
    54046075+>destination</I
    54056076+></TT
    5406 +>} [<TT
    5407 +CLASS="REPLACEABLE"
    5408 +><I
    5409 +>port</I
    5410 +></TT
    5411 +>]</P
     6077+>}</P
    54126078+></DIV
    54136079+><DIV
    54146080+CLASS="REFSECT1"
    54156081+><A
    5416 +NAME="AEN809"
     6082+NAME="AEN838"
    54176083+></A
    54186084+><H2
     
    54466112+and classic example of application of Linux error queues.
    54476113+The situation with IPv4 is worse, because commercial
    5448 +IP routers do not return enough information in icmp error messages.
     6114+IP routers do not return enough information in ICMP error messages.
    54496115+Probably, it will change, when they will be updated.
    54506116+For now it uses Van Jacobson's trick, sweeping a range
     
    54546120+CLASS="REFSECT1"
    54556121+><A
    5456 +NAME="AEN818"
     6122+NAME="AEN847"
    54576123+></A
    54586124+><H2
     
    54966162+></TT
    54976163+> instead of
    5498 +65536 for <B
     6164+65535 for <B
    54996165+CLASS="COMMAND"
    55006166+>tracepath</B
     
    55056171+  </P
    55066172+></DD
     6173+><DT
     6174+><CODE
     6175+CLASS="OPTION"
     6176+>-p</CODE
     6177+></DT
     6178+><DD
     6179+><P
     6180+>Sets the initial destination port to use.
     6181+  </P
     6182+></DD
    55076183+></DL
    55086184+></DIV
     
    55116187+CLASS="REFSECT1"
    55126188+><A
    5513 +NAME="AEN839"
     6189+NAME="AEN873"
    55146190+></A
    55156191+><H2
     
    55456221+><P
    55466222+>The rest of line shows miscellaneous information about path to
    5547 +the correspinding hetwork hop. As rule it contains value of RTT.
     6223+the correspinding network hop. As rule it contains value of RTT.
    55486224+Additionally, it can show Path MTU, when it changes.
    55496225+If the path is asymmetric
     
    55656241+CLASS="REFSECT1"
    55666242+><A
    5567 +NAME="AEN851"
     6243+NAME="AEN885"
    55686244+></A
    55696245+><H2
     
    55786254+>,
    55796255+<A
    5580 +HREF="r884.html"
     6256+HREF="r918.html"
    55816257+><SPAN
    55826258+CLASS="CITEREFENTRY"
     
    56016277+CLASS="REFSECT1"
    56026278+><A
    5603 +NAME="AEN865"
     6279+NAME="AEN899"
    56046280+></A
    56056281+><H2
     
    56206296+CLASS="REFSECT1"
    56216297+><A
    5622 +NAME="AEN870"
     6298+NAME="AEN904"
    56236299+></A
    56246300+><H2
     
    56496325+CLASS="REFSECT1"
    56506326+><A
    5651 +NAME="AEN878"
     6327+NAME="AEN912"
    56526328+></A
    56536329+><H2
     
    56846360+VALIGN="top"
    56856361+><A
    5686 +HREF="r691.html"
     6362+HREF="r720.html"
    56876363+ACCESSKEY="P"
    56886364+>Prev</A
     
    57026378+VALIGN="top"
    57036379+><A
    5704 +HREF="r884.html"
     6380+HREF="r918.html"
    57056381+ACCESSKEY="N"
    57066382+>Next</A
     
    57306406+>
    57316407\ No newline at end of file
    5732 diff -Naur iputils-s20101006.orig/doc/r884.html iputils-s20101006/doc/r884.html
    5733 --- iputils-s20101006.orig/doc/r884.html        1969-12-31 19:00:00.000000000 -0500
    5734 +++ iputils-s20101006/doc/r884.html     2011-01-08 20:09:49.606677412 -0500
     6408diff -Naur iputils-s20121221.orig/doc/r918.html iputils-s20121221/doc/r918.html
     6409--- iputils-s20121221.orig/doc/r918.html        1970-01-01 00:00:00.000000000 +0000
     6410+++ iputils-s20121221/doc/r918.html     2013-01-04 10:38:35.000000000 +0000
    57356411@@ -0,0 +1,315 @@
    5736 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     6412+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    57376413+<HTML
    57386414+><HEAD
     
    57476423+REL="PREVIOUS"
    57486424+TITLE="tracepath"
    5749 +HREF="r790.html"><LINK
     6425+HREF="r819.html"><LINK
    57506426+REL="NEXT"
    57516427+TITLE="tftpd"
    5752 +HREF="r949.html"></HEAD
     6428+HREF="r983.html"></HEAD
    57536429+><BODY
    57546430+CLASS="REFENTRY"
     
    57786454+VALIGN="bottom"
    57796455+><A
    5780 +HREF="r790.html"
     6456+HREF="r819.html"
    57816457+ACCESSKEY="P"
    57826458+>Prev</A
     
    57926468+VALIGN="bottom"
    57936469+><A
    5794 +HREF="r949.html"
     6470+HREF="r983.html"
    57956471+ACCESSKEY="N"
    57966472+>Next</A
     
    58096485+CLASS="REFNAMEDIV"
    58106486+><A
    5811 +NAME="AEN889"
     6487+NAME="AEN923"
    58126488+></A
    58136489+><H2
     
    58176493+CLASS="REFSYNOPSISDIV"
    58186494+><A
    5819 +NAME="AEN892"
     6495+NAME="AEN926"
    58206496+></A
    58216497+><H2
     
    58736549+CLASS="REFSECT1"
    58746550+><A
    5875 +NAME="AEN913"
     6551+NAME="AEN947"
    58766552+></A
    58776553+><H2
     
    58926568+CLASS="REFSECT1"
    58936569+><A
    5894 +NAME="AEN919"
     6570+NAME="AEN953"
    58956571+></A
    58966572+><H2
     
    59226598+CLASS="REFSECT1"
    59236599+><A
    5924 +NAME="AEN931"
     6600+NAME="AEN965"
    59256601+></A
    59266602+><H2
     
    59526628+CLASS="REFSECT1"
    59536629+><A
    5954 +NAME="AEN938"
     6630+NAME="AEN972"
    59556631+></A
    59566632+><H2
     
    59626638+> requires <CODE
    59636639+CLASS="CONSTANT"
    5964 +>CAP_NET_RAWIO</CODE
     6640+>CAP_NET_RAW</CODE
    59656641+> capability
    59666642+to be executed. It is safe to be used as set-uid root.</P
     
    59696645+CLASS="REFSECT1"
    59706646+><A
    5971 +NAME="AEN943"
     6647+NAME="AEN977"
    59726648+></A
    59736649+><H2
     
    60046680+VALIGN="top"
    60056681+><A
    6006 +HREF="r790.html"
     6682+HREF="r819.html"
    60076683+ACCESSKEY="P"
    60086684+>Prev</A
     
    60226698+VALIGN="top"
    60236699+><A
    6024 +HREF="r949.html"
     6700+HREF="r983.html"
    60256701+ACCESSKEY="N"
    60266702+>Next</A
     
    60506726+>
    60516727\ No newline at end of file
    6052 diff -Naur iputils-s20101006.orig/doc/r949.html iputils-s20101006/doc/r949.html
    6053 --- iputils-s20101006.orig/doc/r949.html        1969-12-31 19:00:00.000000000 -0500
    6054 +++ iputils-s20101006/doc/r949.html     2011-01-08 20:09:49.614834740 -0500
     6728diff -Naur iputils-s20121221.orig/doc/r983.html iputils-s20121221/doc/r983.html
     6729--- iputils-s20121221.orig/doc/r983.html        1970-01-01 00:00:00.000000000 +0000
     6730+++ iputils-s20121221/doc/r983.html     2013-01-04 10:38:35.000000000 +0000
    60556731@@ -0,0 +1,376 @@
    6056 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
     6732+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    60576733+<HTML
    60586734+><HEAD
     
    60676743+REL="PREVIOUS"
    60686744+TITLE="traceroute6"
    6069 +HREF="r884.html"><LINK
     6745+HREF="r918.html"><LINK
    60706746+REL="NEXT"
    6071 +TITLE="rdisc"
    6072 +HREF="r1022.html"></HEAD
     6747+TITLE="ninfod"
     6748+HREF="r1056.html"></HEAD
    60736749+><BODY
    60746750+CLASS="REFENTRY"
     
    60986774+VALIGN="bottom"
    60996775+><A
    6100 +HREF="r884.html"
     6776+HREF="r918.html"
    61016777+ACCESSKEY="P"
    61026778+>Prev</A
     
    61126788+VALIGN="bottom"
    61136789+><A
    6114 +HREF="r1022.html"
     6790+HREF="r1056.html"
    61156791+ACCESSKEY="N"
    61166792+>Next</A
     
    61296805+CLASS="REFNAMEDIV"
    61306806+><A
    6131 +NAME="AEN954"
     6807+NAME="AEN988"
    61326808+></A
    61336809+><H2
     
    61376813+CLASS="REFSYNOPSISDIV"
    61386814+><A
    6139 +NAME="AEN957"
     6815+NAME="AEN991"
    61406816+></A
    61416817+><H2
     
    61556831+CLASS="REFSECT1"
    61566832+><A
    6157 +NAME="AEN962"
     6833+NAME="AEN996"
    61586834+></A
    61596835+><H2
     
    61666842+Trivial File Transfer Protocol
    61676843+(<A
    6168 +HREF="ftp://ftp.isi.edu/in-notes/rfc1350.txt"
     6844+HREF="http://tools.ietf.org/rfc/rfc1350.txt"
    61696845+TARGET="_top"
    61706846+>RFC1350</A
     
    62136889+> is used together with
    62146890+<A
    6215 +HREF="r691.html"
     6891+HREF="r720.html"
    62166892+><SPAN
    62176893+CLASS="CITEREFENTRY"
     
    62276903+conventions. See
    62286904+<A
    6229 +HREF="r691.html"
     6905+HREF="r720.html"
    62306906+><SPAN
    62316907+CLASS="CITEREFENTRY"
     
    62416917+CLASS="REFSECT1"
    62426918+><A
    6243 +NAME="AEN986"
     6919+NAME="AEN1020"
    62446920+></A
    62456921+><H2
     
    62956971+CLASS="REFSECT1"
    62966972+><A
    6297 +NAME="AEN997"
     6973+NAME="AEN1031"
    62986974+></A
    62996975+><H2
     
    63016977+><P
    63026978+><A
    6303 +HREF="r691.html"
     6979+HREF="r720.html"
    63046980+><SPAN
    63056981+CLASS="CITEREFENTRY"
     
    63287004+CLASS="REFSECT1"
    63297005+><A
    6330 +NAME="AEN1010"
     7006+NAME="AEN1044"
    63317007+></A
    63327008+><H2
     
    63507026+CLASS="REFSECT1"
    63517027+><A
    6352 +NAME="AEN1016"
     7028+NAME="AEN1050"
    63537029+></A
    63547030+><H2
     
    63857061+VALIGN="top"
    63867062+><A
    6387 +HREF="r884.html"
     7063+HREF="r918.html"
    63887064+ACCESSKEY="P"
    63897065+>Prev</A
     
    64037079+VALIGN="top"
    64047080+><A
    6405 +HREF="r1022.html"
     7081+HREF="r1056.html"
    64067082+ACCESSKEY="N"
    64077083+>Next</A
     
    64237099+ALIGN="right"
    64247100+VALIGN="top"
    6425 +>rdisc</TD
     7101+>ninfod</TD
    64267102+></TR
    64277103+></TABLE
     
    64317107+>
    64327108\ No newline at end of file
    6433 diff -Naur iputils-s20101006.orig/doc/rarpd.8 iputils-s20101006/doc/rarpd.8
    6434 --- iputils-s20101006.orig/doc/rarpd.8  1969-12-31 19:00:00.000000000 -0500
    6435 +++ iputils-s20101006/doc/rarpd.8       2011-01-08 20:09:51.270811811 -0500
     7109diff -Naur iputils-s20121221.orig/doc/rarpd.8 iputils-s20121221/doc/rarpd.8
     7110--- iputils-s20121221.orig/doc/rarpd.8  1970-01-01 00:00:00.000000000 +0000
     7111+++ iputils-s20121221/doc/rarpd.8       2013-01-04 10:38:27.000000000 +0000
    64367112@@ -0,0 +1,84 @@
    64377113+.\" This manpage has been automatically generated by docbook2man
     
    64407116+.\" Please send any bug reports, improvements, comments, patches,
    64417117+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    6442 +.TH "RARPD" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     7118+.TH "RARPD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    64437119+.SH NAME
    64447120+rarpd \- answer RARP REQUESTs
     
    65077183+.SH "SECURITY"
    65087184+.PP
    6509 +\fBrarpd\fR requires CAP_NET_RAWIO capability
     7185+\fBrarpd\fR requires CAP_NET_RAW capability
    65107186+to listen and send RARP and ARP packets. It also needs CAP_NET_ADMIN
    65117187+to give to kernel hint for ARP resolution; this is not strictly required,
     
    65197195+and the latest versions are  available in source form at
    65207196+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    6521 diff -Naur iputils-s20101006.orig/doc/rdisc.8 iputils-s20101006/doc/rdisc.8
    6522 --- iputils-s20101006.orig/doc/rdisc.8  1969-12-31 19:00:00.000000000 -0500
    6523 +++ iputils-s20101006/doc/rdisc.8       2011-01-08 20:09:51.527155543 -0500
    6524 @@ -0,0 +1,110 @@
     7197diff -Naur iputils-s20121221.orig/doc/rdisc.8 iputils-s20121221/doc/rdisc.8
     7198--- iputils-s20121221.orig/doc/rdisc.8  1970-01-01 00:00:00.000000000 +0000
     7199+++ iputils-s20121221/doc/rdisc.8       2013-01-04 10:38:27.000000000 +0000
     7200@@ -0,0 +1,122 @@
    65257201+.\" This manpage has been automatically generated by docbook2man
    65267202+.\" from a DocBook document.  This tool can be found at:
     
    65287204+.\" Please send any bug reports, improvements, comments, patches,
    65297205+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    6530 +.TH "RDISC" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     7206+.TH "RDISC" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    65317207+.SH NAME
    65327208+rdisc \- network router discovery daemon
    65337209+.SH SYNOPSIS
    65347210+
    6535 +\fBrdisc\fR [\fB-abdfstvV\fR] [\fB\fIsend_address\fB\fR] [\fB\fIreceive_address\fB\fR]
     7211+\fBrdisc\fR [\fB-abdfrstvV\fR] [\fB-p \fIpreference\fB\fR] [\fB-T \fImax_interval\fB\fR] [\fB\fIsend_address\fB\fR] [\fB\fIreceive_address\fB\fR]
    65367212+
    65377213+.SH "DESCRIPTION"
     
    65667242+Server side of router discovery protocol is supported by Cisco IOS
    65677243+and by any more or less complete UNIX routing daemon, f.e \fBgated\fR.
     7244+Or, \fBrdisc\fR can act as responder, if compiled with -DRDISC_SERVER.
    65687245+.SH "OPTIONS"
    65697246+.TP
     
    65897266+\fB-s\fR must be specified.
    65907267+.TP
     7268+\fB-r\fR
     7269+Responder mode, available only if compiled with -DRDISC_SERVER.
     7270+.TP
    65917271+\fB-s\fR
    65927272+Send three \fBsolicitation\fR messages initially to quickly discover
     
    65957275+exits with a non-zero exit code if it can not find any routers.
    65967276+This can be overridden with the \fB-f\fR option.
     7277+.TP
     7278+\fB-p \fIpreference\fB\fR
     7279+Set preference in advertisement.
     7280+Available only with -r option.
     7281+.TP
     7282+\fB-T \fImax_interval\fB\fR
     7283+Set maximum advertisement interval in seconds.  Default is 600 secs.
     7284+Available only with -r option.
    65977285+.TP
    65987286+\fB-t\fR
     
    66257313+.SH "SECURITY"
    66267314+.PP
    6627 +\fBrdisc\fR requires CAP_NET_RAWIO to listen
     7315+\fBrdisc\fR requires CAP_NET_RAW to listen
    66287316+and send ICMP messages and capability CAP_NET_ADMIN
    66297317+to update routing tables.
     
    66337321+and the latest versions are  available in source form at
    66347322+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    6635 diff -Naur iputils-s20101006.orig/doc/tftpd.8 iputils-s20101006/doc/tftpd.8
    6636 --- iputils-s20101006.orig/doc/tftpd.8  1969-12-31 19:00:00.000000000 -0500
    6637 +++ iputils-s20101006/doc/tftpd.8       2011-01-08 20:09:51.723407498 -0500
     7323diff -Naur iputils-s20121221.orig/doc/tftpd.8 iputils-s20121221/doc/tftpd.8
     7324--- iputils-s20121221.orig/doc/tftpd.8  1970-01-01 00:00:00.000000000 +0000
     7325+++ iputils-s20121221/doc/tftpd.8       2013-01-04 10:38:27.000000000 +0000
    66387326@@ -0,0 +1,85 @@
    66397327+.\" This manpage has been automatically generated by docbook2man
     
    66427330+.\" Please send any bug reports, improvements, comments, patches,
    66437331+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    6644 +.TH "TFTPD" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     7332+.TH "TFTPD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    66457333+.SH NAME
    66467334+tftpd \- Trivial File Transfer Protocol server
     
    67227410+and the latest versions are  available in source form at
    67237411+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    6724 diff -Naur iputils-s20101006.orig/doc/tracepath.8 iputils-s20101006/doc/tracepath.8
    6725 --- iputils-s20101006.orig/doc/tracepath.8      1969-12-31 19:00:00.000000000 -0500
    6726 +++ iputils-s20101006/doc/tracepath.8   2011-01-08 20:09:52.154780955 -0500
    6727 @@ -0,0 +1,97 @@
     7412diff -Naur iputils-s20121221.orig/doc/tracepath.8 iputils-s20121221/doc/tracepath.8
     7413--- iputils-s20121221.orig/doc/tracepath.8      1970-01-01 00:00:00.000000000 +0000
     7414+++ iputils-s20121221/doc/tracepath.8   2013-01-04 10:38:27.000000000 +0000
     7415@@ -0,0 +1,100 @@
    67287416+.\" This manpage has been automatically generated by docbook2man
    67297417+.\" from a DocBook document.  This tool can be found at:
     
    67317419+.\" Please send any bug reports, improvements, comments, patches,
    67327420+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    6733 +.TH "TRACEPATH" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     7421+.TH "TRACEPATH" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    67347422+.SH NAME
    67357423+tracepath, tracepath6 \- traces path to a network host discovering MTU along this path
    67367424+.SH SYNOPSIS
    67377425+
    6738 +\fBtracepath\fR [\fB-n\fR] [\fB-b\fR] [\fB-l \fIpktlen\fB\fR] \fB\fIdestination\fB\fR [\fB\fIport\fB\fR]
     7426+\fBtracepath\fR [\fB-n\fR] [\fB-b\fR] [\fB-l \fIpktlen\fB\fR] [\fB-p \fIport\fB\fR] \fB\fIdestination\fB\fR
    67397427+
    67407428+.SH "DESCRIPTION"
     
    67487436+and classic example of application of Linux error queues.
    67497437+The situation with IPv4 is worse, because commercial
    6750 +IP routers do not return enough information in icmp error messages.
     7438+IP routers do not return enough information in ICMP error messages.
    67517439+Probably, it will change, when they will be updated.
    67527440+For now it uses Van Jacobson's trick, sweeping a range
     
    67627450+\fB-l\fR
    67637451+Sets the initial packet length to \fIpktlen\fR instead of
    6764 +65536 for \fBtracepath\fR or 128000 for \fBtracepath6\fR.
     7452+65535 for \fBtracepath\fR or 128000 for \fBtracepath6\fR.
     7453+.TP
     7454+\fB-p\fR
     7455+Sets the initial destination port to use.
    67657456+.SH "OUTPUT"
    67667457+.PP
     
    67857476+.PP
    67867477+The rest of line shows miscellaneous information about path to
    6787 +the correspinding hetwork hop. As rule it contains value of RTT.
     7478+the correspinding network hop. As rule it contains value of RTT.
    67887479+Additionally, it can show Path MTU, when it changes.
    67897480+If the path is asymmetric
     
    68237514+and the latest versions are  available in source form at
    68247515+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
    6825 diff -Naur iputils-s20101006.orig/doc/traceroute6.8 iputils-s20101006/doc/traceroute6.8
    6826 --- iputils-s20101006.orig/doc/traceroute6.8    1969-12-31 19:00:00.000000000 -0500
    6827 +++ iputils-s20101006/doc/traceroute6.8 2011-01-08 20:09:52.114781859 -0500
     7516diff -Naur iputils-s20121221.orig/doc/traceroute6.8 iputils-s20121221/doc/traceroute6.8
     7517--- iputils-s20121221.orig/doc/traceroute6.8    1970-01-01 00:00:00.000000000 +0000
     7518+++ iputils-s20121221/doc/traceroute6.8 2013-01-04 10:38:27.000000000 +0000
    68287519@@ -0,0 +1,42 @@
    68297520+.\" This manpage has been automatically generated by docbook2man
     
    68327523+.\" Please send any bug reports, improvements, comments, patches,
    68337524+.\" etc. to Steve Cheng <steve@ggi-project.org>.
    6834 +.TH "TRACEROUTE6" "8" "08 January 2011" "iputils-101006" "System Manager's Manual: iputils"
     7525+.TH "TRACEROUTE6" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils"
    68357526+.SH NAME
    68367527+traceroute6 \- traces path to a network host
     
    68627553+.SH "SECURITY"
    68637554+.PP
    6864 +\fBtracepath6\fR requires CAP_NET_RAWIO capability
     7555+\fBtracepath6\fR requires CAP_NET_RAW capability
    68657556+to be executed. It is safe to be used as set-uid root.
    68667557+.SH "AVAILABILITY"
     
    68697560+and the latest versions are  available in source form at
    68707561+http://www.skbuff.net/iputils/iputils-current.tar.bz2.
     7562diff -Naur iputils-s20121221.orig/ping6.c iputils-s20121221/ping6.c
     7563--- iputils-s20121221.orig/ping6.c      2012-12-21 14:01:07.000000000 +0000
     7564+++ iputils-s20121221/ping6.c   2013-08-06 18:09:09.448346619 +0000
     7565@@ -168,8 +168,10 @@
     7566 
     7567 #ifdef USE_GNUTLS
     7568 # include <gnutls/openssl.h>
     7569-#else
     7570+# define USE_CRYPTO
     7571+#elif defined USE_OPENSSL
     7572 # include <openssl/md5.h>
     7573+# define USE_CRYPTO
     7574 #endif
     7575 
     7576 /* Node Information query */
     7577@@ -326,6 +328,7 @@
     7578 #if !PING6_NONCE_MEMORY
     7579 static int niquery_nonce(__u8 *nonce, int fill)
     7580 {
     7581+# ifdef USE_CRYPTO
     7582        static __u8 digest[MD5_DIGEST_LENGTH];
     7583        static int seq = -1;
     7584 
     7585@@ -348,6 +351,10 @@
     7586                        return -1;
     7587                return ntohsp((__u16 *)nonce);
     7588        }
     7589+# else
     7590+       fprintf(stderr, "ping6: function not available; crypto disabled\n");
     7591+       exit(3);
     7592+# endif
     7593 }
     7594 #endif
     7595 
     7596@@ -502,6 +509,7 @@
     7597 
     7598 static int niquery_option_subject_name_handler(int index, const char *arg)
     7599 {
     7600+#ifdef USE_CRYPTO
     7601        static char nigroup_buf[INET6_ADDRSTRLEN + 1 + IFNAMSIZ];
     7602        unsigned char *dnptrs[2], **dpp, **lastdnptr;
     7603        int n;
     7604@@ -627,6 +635,10 @@
     7605        free(idn);
     7606        free(name);
     7607        exit(1);
     7608+#else
     7609+       fprintf(stderr, "ping6: function not available; crypto disabled\n");
     7610+       exit(3);
     7611+#endif
     7612 }
     7613 
     7614 int niquery_option_help_handler(int index, const char *arg)
     7615diff -Naur iputils-s20121221.orig/tracepath.c iputils-s20121221/tracepath.c
     7616--- iputils-s20121221.orig/tracepath.c  2012-12-21 14:01:07.000000000 +0000
     7617+++ iputils-s20121221/tracepath.c       2013-08-06 18:08:56.048346586 +0000
     7618@@ -73,13 +73,10 @@
     7619 
     7620 void print_host(const char *a, const char *b, int both)
     7621 {
     7622-       int plen = 0;
     7623-       printf("%s", a);
     7624-       plen = strlen(a);
     7625-       if (both) {
     7626-               printf(" (%s)", b);
     7627-               plen += strlen(b) + 3;
     7628-       }
     7629+       int plen;
     7630+       plen = printf("%s", a);
     7631+       if (both)
     7632+               plen += printf(" (%s)", b);
     7633        if (plen >= HOST_COLUMN_SIZE)
     7634                plen = HOST_COLUMN_SIZE - 1;
     7635        printf("%*s", HOST_COLUMN_SIZE - plen, "");
     7636diff -Naur iputils-s20121221.orig/tracepath6.c iputils-s20121221/tracepath6.c
     7637--- iputils-s20121221.orig/tracepath6.c 2012-12-21 14:01:07.000000000 +0000
     7638+++ iputils-s20121221/tracepath6.c      2013-08-06 18:08:56.048346586 +0000
     7639@@ -86,13 +86,10 @@
     7640 
     7641 void print_host(const char *a, const char *b, int both)
     7642 {
     7643-       int plen = 0;
     7644-       printf("%s", a);
     7645-       plen = strlen(a);
     7646-       if (both) {
     7647-               printf(" (%s)", b);
     7648-               plen += strlen(b) + 3;
     7649-       }
     7650+       int plen;
     7651+       plen = printf("%s", a);
     7652+       if (both)
     7653+               plen += printf(" (%s)", b);
     7654        if (plen >= HOST_COLUMN_SIZE)
     7655                plen = HOST_COLUMN_SIZE - 1;
     7656        printf("%*s", HOST_COLUMN_SIZE - plen, "");
  • patches/perl-5.18.1-Configure_multilib-1.patch

    r1c9985f r026bb5d  
    11Submitted By: Ryan Oliver <ryan dot oliver at pha dot com dot au>
    2 Date: 2010-08-01
     2Date: 2013-08-13
    33Initial Package Version: 5.8.8
    44Origin: Ryan Oliver
     
    1010          Against 5.10.1 By Jim Gifford on 2009-08-25
    1111          Against 5.12.1 By Joe Ciccone on 2010-08-01
     12          Against 5.16.1 By William Harrington on 2012-08-26
     13Rename for 5.16.2 by William Harrington on 2012-11-01
    1214
    13 diff -Naur perl-5.12.1.orig/Configure perl-5.12.1/Configure
    14 --- perl-5.12.1.orig/Configure  2010-05-13 18:01:07.000000000 -0400
    15 +++ perl-5.12.1/Configure       2010-08-01 18:18:19.614326794 -0400
    16 @@ -6254,6 +6254,8 @@
     15Rediffed: Against 5.18.0 by William Harrington on 2013-05-28
     16Rediffed: Against 5.18.1 by William Harrington on 2013-08-13
     17
     18diff -Naur perl-5.18.1.orig/Configure perl-5.18.1/Configure
     19--- perl-5.18.1.orig/Configure  2013-08-12 02:44:47.000000000 +0000
     20+++ perl-5.18.1/Configure       2013-08-13 16:47:20.188650223 +0000
     21@@ -6219,6 +6219,8 @@
    1722 : The default "style" setting is made in installstyle.U
    1823 case "$installstyle" in
     
    2328 esac
    2429 eval $prefixit
    25 @@ -6502,6 +6504,8 @@
     30@@ -6467,6 +6469,8 @@
    2631 case "$sitelib" in
    2732 '') case "$installstyle" in
     
    3237        esac
    3338        ;;
    34 @@ -7020,6 +7024,8 @@
     39@@ -6986,6 +6990,8 @@
    3540                prog=`echo $package | $sed 's/-*[0-9.]*$//'`
    3641                case "$installstyle" in
  • patches/perl-5.18.1-libc-1.patch

    r1c9985f r026bb5d  
    11Submitted By: Jonathan Norman <Jonathan at bluesquarelinux.co.uk>
    2 Date: 2011-05-17
     2Date: 2013-08-13
    33Initial Package Version: 5.8.8
    44Origin: Ryan Oliver
     
    1111          Against 5.12.1 By Joe Ciccone on 2010-08-01
    1212          Against 5.14.0 By Jonathan Norman on 2011-05-17
     13          Against 5.16.1 by William Harrington on 2012-08-26
     14Rename for 5.16.2 by William Harrington on 2012-11-01
    1315
    14 diff -Naur perl-5.14.0.orig/hints/linux.sh perl-5.14.0/hints/linux.sh
    15 --- perl-5.14.0.orig/hints/linux.sh     2011-05-17 10:15:25.836817125 +0000
    16 +++ perl-5.14.0/hints/linux.sh  2011-05-17 10:17:15.472650338 +0000
    17 @@ -63,9 +63,9 @@
     16Rediffed: Against 5.18.0 by William Harrington on 2013-05-27
     17Rediffed: Against 5.18.1 by William Harrington on 2013-08-13
     18
     19diff -Naur perl-5.18.1.orig/hints/linux.sh perl-5.18.1/hints/linux.sh
     20--- perl-5.18.1.orig/hints/linux.sh     2013-08-12 02:44:48.000000000 +0000
     21+++ perl-5.18.1/hints/linux.sh  2013-08-13 16:46:38.594653439 +0000
     22@@ -66,9 +66,9 @@
    1823 # We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
    1924 # are insufficiently precise to distinguish things like
     
    2833 
    2934 # Configure may fail to find lstat() since it's a static/inline
    30 @@ -461,3 +461,9 @@
     35@@ -456,3 +456,9 @@
    3136     libswanted="$libswanted pthread"
    3237     ;;
Note: See TracChangeset for help on using the changeset viewer.