9d31cfa
%global checkout 20131119git
626e1f7
df75c09
Summary: Basic networking tools
cvsdist a419bb4
Name: net-tools
95ca85a
Version: 2.0
9d31cfa
Release: 0.15.%{checkout}%{?dist}
30d17a8
License: GPLv2+
cvsdist a419bb4
Group: System Environment/Base
9a66b7f
URL: http://sourceforge.net/projects/net-tools/
d1a18e2
ecf4561
# git archive --format=tar --remote=git://git.code.sf.net/p/net-tools/code master | xz > net-tools-%%{version}.%%{checkout}.tar.xz
0ffa134
Source0: net-tools-%{version}.%{checkout}.tar.xz
95ca85a
Source1: net-tools-config.h
95ca85a
Source2: net-tools-config.make
4a78a73
Source3: ether-wake.c
4a78a73
Source4: ether-wake.8
4a78a73
Source5: mii-diag.c
4a78a73
Source6: mii-diag.8
4a78a73
Source7: iptunnel.8
4a78a73
Source8: ipmaddr.8
d1a18e2
Source9: arp-ethers.service
d1a18e2
626e1f7
# adds <delay> option that allows netstat to cycle printing through statistics every delay seconds.
95ca85a
Patch1: net-tools-cycle.patch
626e1f7
626e1f7
# Fixed incorrect address display for ipx (#46434)
95ca85a
Patch2: net-tools-ipx.patch
626e1f7
626e1f7
# various man page fixes merged into one patch
759b432
Patch3: net-tools-man.patch
626e1f7
626e1f7
# netstat: interface option now works as described in the man page (#61113, #115987)
759b432
Patch4: net-tools-interface.patch
626e1f7
626e1f7
# filter out duplicate tcp entries (#139407)
759b432
Patch5: net-tools-duplicate-tcp.patch
626e1f7
626e1f7
# don't report statistics for virtual devices (#143981)
759b432
Patch6: net-tools-statalias.patch
626e1f7
626e1f7
# clear static buffers in interface.c by Ulrich Drepper (#176714)
759b432
Patch7: net-tools-interface_stack.patch
626e1f7
626e1f7
# statistics for SCTP
759b432
Patch8: net-tools-sctp-statistics.patch
626e1f7
626e1f7
# ifconfig crash when interface name is too long (#190703)
759b432
Patch9: net-tools-ifconfig-long-iface-crasher.patch
626e1f7
626e1f7
# fixed tcp timers info in netstat (#466845)
759b432
Patch10: net-tools-netstat-probe.patch
95ca85a
Jaromír Končický 0373077
# use all interfaces instead of default (#1003875)
Jaromír Končický 0373077
Patch20: ether-wake-interfaces.patch
Jaromír Končický 0373077
1fbcbe5
BuildRequires: gettext, libselinux
1982cdf
BuildRequires: libselinux-devel
d1a18e2
BuildRequires: systemd-units
d1a18e2
Requires(post): systemd-units
cvsdist a419bb4
cvsdist a419bb4
%description
14f06a4
The net-tools package contains basic networking tools,
14f06a4
including ifconfig, netstat, route, and others.
14f06a4
Most of them are obsolete. For replacement check iproute package.
cvsdist a419bb4
cvsdist a419bb4
%prep
626e1f7
%setup -q -c
3f72065
%patch1 -p1 -b .cycle
3f72065
%patch2 -p1 -b .ipx
759b432
%patch3 -p1 -b .man
759b432
%patch4 -p1 -b .interface
759b432
%patch5 -p1 -b .dup-tcp
759b432
%patch6 -p1 -b .statalias
759b432
%patch7 -p1 -b .stack
759b432
%patch8 -p1 -b .sctp
759b432
%patch9 -p1 -b .long_iface
759b432
%patch10 -p1 -b .probe
cvsdist 0d01487
4a78a73
cp %SOURCE1 ./config.h
4a78a73
cp %SOURCE2 ./config.make
4a78a73
cp %SOURCE3 .
4a78a73
cp %SOURCE4 ./man/en_US
4a78a73
cp %SOURCE5 .
4a78a73
cp %SOURCE6 ./man/en_US
7ab46c3
cp %SOURCE7 ./man/en_US
14f06a4
cp %SOURCE8 ./man/en_US
cvsdist a419bb4
Jaromír Končický 0373077
%patch20 -p1 -b .interfaces
Jaromír Končický 0373077
Jaromír Končický 0373077
touch ./config.h
Jaromír Končický 0373077
cvsdist a419bb4
%build
2bc9586
# Sparc and s390 arches need to use -fPIE
2bc9586
%ifarch sparcv9 sparc64 s390 s390x
2bc9586
export CFLAGS="$RPM_OPT_FLAGS $CFLAGS -fPIE"
2bc9586
%else
b7e966f
export CFLAGS="$RPM_OPT_FLAGS $CFLAGS -fpie"
2bc9586
%endif
b7e966f
# RHBZ #853193
b7e966f
export LDFLAGS="$LDFLAGS -pie -Wl,-z,relro -Wl,-z,now"
119bde2
cvsdist a419bb4
make
Jaromír Končický 0373077
make ether-wake
7ab46c3
gcc $RPM_OPT_FLAGS -o mii-diag mii-diag.c
cvsdist a419bb4
cvsdist a419bb4
%install
cvsdist 14587f6
mv man/de_DE man/de
cvsdist 14587f6
mv man/fr_FR man/fr
cvsdist 14587f6
mv man/pt_BR man/pt
cvsdist 14587f6
14f06a4
make BASEDIR=%{buildroot} mandir=%{_mandir} install
cvsdist a419bb4
3f72065
# ifconfig and route are installed into /bin by default
3f72065
# mv them back to /sbin for now as I (jpopelka) don't think customers would be happy
3f72065
mv %{buildroot}/bin/ifconfig %{buildroot}/sbin
3f72065
mv %{buildroot}/bin/route %{buildroot}/sbin
3f72065
cvsdist 2b639f3
install -m 755 ether-wake %{buildroot}/sbin
7ab46c3
install -m 755 mii-diag %{buildroot}/sbin
cvsdist 2b639f3
cvsdist 493a8e0
rm %{buildroot}/sbin/rarp
cvsdist 493a8e0
rm %{buildroot}%{_mandir}/man8/rarp.8*
e6ca95f
rm %{buildroot}%{_mandir}/de/man8/rarp.8*
e6ca95f
rm %{buildroot}%{_mandir}/fr/man8/rarp.8*
e6ca95f
rm %{buildroot}%{_mandir}/pt/man8/rarp.8*
cvsdist 493a8e0
3f72065
# remove hostname (has its own package)
d0b7400
rm %{buildroot}/bin/dnsdomainname
d0b7400
rm %{buildroot}/bin/domainname
d0b7400
rm %{buildroot}/bin/hostname
d0b7400
rm %{buildroot}/bin/nisdomainname
d0b7400
rm %{buildroot}/bin/ypdomainname
d0b7400
rm -rf %{buildroot}%{_mandir}/de/man1
d0b7400
rm -rf %{buildroot}%{_mandir}/fr/man1
d0b7400
rm -rf %{buildroot}%{_mandir}/man1
d0b7400
rm -rf %{buildroot}%{_mandir}/pt/man1
d0b7400
d1a18e2
# install systemd unit file
d1a18e2
mkdir -p %{buildroot}%{_unitdir}
d1a18e2
install -m 644 %{SOURCE9} %{buildroot}%{_unitdir}
c35c0ca
2c75ca1
%find_lang %{name} --all-name --with-man
cvsdist 493a8e0
d1a18e2
%post
771a6a3
%systemd_post arp-ethers.service
cvsdist a419bb4
cvsdist 493a8e0
%files -f %{name}.lang
4a78a73
%doc COPYING
d0b7400
/bin/netstat
3f72065
/sbin/ifconfig
3f72065
/sbin/route
3f72065
/sbin/arp
3f72065
/sbin/ether-wake
3f72065
/sbin/ipmaddr
3f72065
/sbin/iptunnel
3f72065
/sbin/mii-diag
3f72065
/sbin/mii-tool
3f72065
/sbin/nameif
3f72065
/sbin/plipconfig
3f72065
/sbin/slattach
d0b7400
%{_mandir}/man[58]/*
d1a18e2
%attr(0644,root,root)   %{_unitdir}/arp-ethers.service
cvsdist a419bb4
cvsdist a419bb4
%changelog
9d31cfa
* Tue Nov 19 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.15.20131119git
9d31cfa
- latest snapshot (#1021109)
9d31cfa
759b432
* Fri Oct 04 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.14.20131004git
759b432
- latest snapshot
759b432
58b94a6
* Mon Sep 23 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.13.20130910git
58b94a6
- remove %%ifarch alpha condition from %%prep
58b94a6
- improve sctp-statistics.patch (#982638#c10)
58b94a6
b381fc1
* Tue Sep 10 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.12.20130910git
b381fc1
- latest snapshot
b381fc1
ba1d4f0
* Wed Sep 04 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.11.20130607git
ba1d4f0
- amend ether-wake-interfaces.patch
ba1d4f0
Jaromír Končický 0373077
* Wed Sep 04 2013 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.10.20130607git
Jaromír Končický 0373077
- use all interfaces instead of default (#1003875)
Jaromír Končický 0373077
- reverted all changes on ether-wake.c and put original file
Jaromír Končický 0373077
a4e4d3d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.9.20130607git
a4e4d3d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a4e4d3d
c90847a
* Fri Jun 07 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.8.20130607git
c90847a
- latest snapshot
c90847a
774ed84
* Thu Apr 25 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.7.20130425git
774ed84
- latest snapshot
774ed84
fcd28c8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.6.20130109git
fcd28c8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fcd28c8
af57c95
* Wed Jan 09 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.5.20130109git
af57c95
- latest snapshot (#579855)
af57c95
9a66b7f
* Fri Nov 30 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.4.20121106git
9a66b7f
- fix URL
9a66b7f
30d17a8
* Fri Nov 16 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.3.20121106git
30d17a8
- match actual license
30d17a8
60b3326
* Tue Nov 06 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.2.20121106git
60b3326
- few man page fixes
60b3326
95ca85a
* Thu Oct 04 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.1.20121004git
95ca85a
- the git snapshot we ship is actually much more a
95ca85a
  2.0 pre-release then 1.60 post-release
95ca85a
cbb4fe9
* Mon Oct 01 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-145.20120917git
cbb4fe9
- compile without STRIP (Metricom radio) support
cbb4fe9
094f4e5
* Mon Sep 17 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-144.20120917git
094f4e5
- upstream git snapshot
094f4e5
2bc9586
* Wed Sep 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-143.20120702git
2bc9586
- Sparc and s390 arches need to use -fPIE
2bc9586
b7e966f
* Wed Sep 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-142.20120702git
b7e966f
- compile with PIE and full RELRO flags (#853193)
b7e966f
9f9884f
* Wed Aug 22 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-141.20120702git
9f9884f
- fixed building with kernel-3.6
9f9884f
771a6a3
* Wed Aug 22 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-140.20120702git
771a6a3
- use new systemd-rpm macros (#850225)
771a6a3
ba53460
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-139.20120702git
ba53460
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ba53460
211b2a6
* Mon Jul 02 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-138.20120702git
211b2a6
- fixes for #834110 and #836258 merged upstream
211b2a6
5e8b5ca
* Wed Jun 20 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-137.20120509git
5e8b5ca
- compile without Token ring support (http://lwn.net/Articles/497397/)
5e8b5ca
fe6b2b4
* Tue Jun 19 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-136.20120509git
fe6b2b4
- better SCTP support (#826676)
fe6b2b4
b442f0f
* Wed May 09 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-135.20120509git
b442f0f
- don't require hostname package
b442f0f
9dd4855
* Fri Jan 27 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-134.20120127git
9dd4855
- Do not show interface metric in 'ifconfig', 'ifconfig -s' and 'netstat -i'.
9dd4855
  Spare place is used for interface name so trim_iface.patch is no longer needed.
9dd4855
- No need to convert man pages to utf-8 as upstream ship them in utf-8 now.
9dd4855
2c75ca1
* Thu Jan 19 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-133.20120119git
2c75ca1
- SELinux patch merged upstream
2c75ca1
- several page fixes merged upstream
2c75ca1
- mark localized man pages with %%lang
2c75ca1
5bfa104
* Wed Jan 11 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-132.20120111git
5bfa104
- 3 patches merged upstream
5bfa104
- removed 2digit.patch (#718610)
5bfa104
- removed fgets.patch (probably not needed anymore)
5bfa104
3f72065
* Thu Jan 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-131.20120105git
3f72065
- next 11 patches merged upstream
3f72065
- removed bcast.patch (seems to be fixed upstream)
3f72065
- removed netstat-p-basename.patch (upstream is not happy with it)
3f72065
- netstat-leak.patch merged into duplicate-tcp.patch
3f72065
0ffa134
* Wed Dec 07 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-130.20111207git
0ffa134
- removed virtualname.patch
0ffa134
- added back isofix.patch
0ffa134
- improved mii-registers.patch
0ffa134
0ffa134
* Tue Dec 06 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-129.20111206git
626e1f7
- upstream git snapshot
626e1f7
- reduced number of patches from 95 to 32
90b4e5c
- netstat -T/--notrim option is now -W/--wide
626e1f7
664ef26
* Tue Oct 25 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-128
664ef26
- Removed HFI support.
664ef26
- Improved num-ports.patch
664ef26
4b91bef
* Thu Oct 20 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-127
4b91bef
- Merge all upstream fixes into net-tools-1.60-upstream.patch
4b91bef
5c40e14
* Tue Oct 18 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-126
5c40e14
- Upstream is migrating to Sourceforge.
5c40e14
63250dc
* Mon Oct 03 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-125
63250dc
- Fixed ether-wake(8) and mii-diag(8) man pages (#742629)
63250dc
0dfcd48
* Mon Sep 19 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-124
0dfcd48
- Improved arp-ethers.service unit file (#735617)
0dfcd48
4d2bb7a
* Wed Aug 24 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-123
4d2bb7a
- Improved netstat_stop_trim.patch to not truncate IPV6 UDP sockets (#732984)
4d2bb7a
5d62a2f
* Mon Jul 04 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-122
5d62a2f
- Update for 2 digit Linux version numbers (#718610)
5d62a2f
d1a18e2
* Fri Jun 17 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-121
d1a18e2
- Added arp-ethers.service systemd unit file to run 'arp -f /etc/ethers'
d1a18e2
  on startup of system. Don't ship default /etc/ethers (#713759)
d1a18e2
3e4d819
* Wed May 25 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-120
3e4d819
- Do not mention /proc/net/socket in ifconfig(8) (#661905)
3e4d819
- Merge all 'man page only fix' patches into net-tools-1.60-man.patch
3e4d819
579c9b0
* Thu Apr 28 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-119
579c9b0
- Fix possible problems found by static analysis of code.
579c9b0
1d5cd6c
* Thu Apr 21 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-118
1d5cd6c
- patch netstat to separate basename of -p only if it is absolute
1d5cd6c
  path (in order to make argv[0]="sshd pty/0" display as sshd, and not as /0).
1d5cd6c
416de6c
* Thu Apr 14 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-117
416de6c
- plipconfig man page and usage output fixes. (#694766)
416de6c
3ecd878
* Mon Mar 07 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-116
3ecd878
- Fix mii-tool/mii-diag/ether-wake to not default to eth0 because
3ecd878
  since Fedora 15 network devices can have arbitrary names (#682367)
3ecd878
ec460fe
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-115
ec460fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ec460fe
dc1ed7a
* Fri Feb 04 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-114
dc1ed7a
- Improve scanf-format.patch (#668047)
dc1ed7a
a03b4bf
* Fri Jan 21 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-113
a03b4bf
- Improve route(8) man page saying that 'route mss' actually sets MTU (#671321)
a03b4bf
cfd3d7d
* Mon Jan 03 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-112
cfd3d7d
- Fix the handling of some of the HAVE_* flags ifdef vs if. (BerliOS #17812)
cfd3d7d
724487e
* Thu Dec 16 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-111
724487e
- fixed mii-diag(8) man page (#663689)
724487e
- fixed route(8) man page (#664171)
724487e
5066cc8
* Thu Dec 16 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-110
5066cc8
- fixed ifconfig(8) man page (#663469)
5066cc8
aff3461
* Wed Nov 17 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-109
5066cc8
- improved netstat(8) man page (#614931)
aff3461
11c8bd4
* Mon Nov 01 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-108
5066cc8
- added netstat(8) support for RcvbufErrors, SndbufErrors (BerliOS #17645)
11c8bd4
Jesse Keating 09dd09b
* Wed Sep 29 2010 jkeating - 1.60-107
Jesse Keating 09dd09b
- Rebuilt for gcc bug 634757
Jesse Keating 09dd09b
d7ac37c
* Thu Sep 16 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-106
d7ac37c
- HFI support
d7ac37c
3385b91
* Thu Sep 16 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-105
3385b91
- fixed memory leak in netstat when run with -c option
3385b91
803cb99
* Tue Aug 10 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-104
803cb99
- improved statistics-doubleword.patch (Bug #579854)
803cb99
e1d66d2
* Mon Jun 14 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-103
e1d66d2
- updated mii-tool to support gigabit links (#539575)
e1d66d2
4af8691
* Wed Apr  7 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-102
4af8691
- fixed statistics.c to use unsigned long long (instead of int) to handle 64 bit integers (Bug #579854, Debian #561161)
4af8691
- fixed typo in statistics.c (Bug #579855)
4af8691
1f3e550
* Sat Jan  2 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-101
1f3e550
- fixed overflow patch (#551625)
1f3e550
- ifconfig interface:0 del <IP> will remove the Aliased IP on IA64 (#473211)
1f3e550
- interface slip: cast keepalive/outfill to unsigned long to fix warnings on 64bit hosts -- no functional changes since these only have an 8bit range anyways
1f3e550
- interface: fix IPv6 parsing of interfaces with large indexes (> 255) (Debian #433543)
1f3e550
d0b7400
* Mon Dec 21 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-100
d0b7400
- Move hostname to separate package
d0b7400
3511fc0
* Thu Dec  3 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-99
3511fc0
- return defining of BuildRoot even it's no longer necessary
3511fc0
  (https://fedoraproject.org/wiki/Packaging:Guidelines#BuildRoot_tag)
3511fc0
  to silent rpmlint false warning
3511fc0
bf478da
* Wed Nov  4 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-98
bf478da
- in mii-tool.c use <linux/mii.h> instead of "mii.h" and fix Bug #491358
bf478da
19162aa
* Thu Oct 29 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-97
19162aa
- Make "hostname -s" display host name cut at the first dot (no
19162aa
  matter if the host name resolves or not) (bug #531702)
4a78a73
774ed84
* Wed Sep 30 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-96
4a78a73
- netplug moved to separate package
4a78a73
- #319981 and #322901 - minor man pages changes
4a78a73
- applied changes from berlios cvs, which fix: Berlios #16232, Gentoo #283759 and polish Makefile and slattach 
4a78a73
14f06a4
* Tue Sep 1 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-95
14f06a4
- netstat - avoid name resolution for listening or established sockets (-l) by return fast. 
14f06a4
- netstat - --continuous should flush stdout
14f06a4
- added missing man pages (iptunnel, ipmaddr, netplug, netplug.d, netplugd.conf)
14f06a4
- added note about obsolete commands to existing man pages 
14f06a4
- let the user know that ifconfig can correctly show only first 8 bytes of Infiniband hw address
14f06a4
73665a0
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-94
73665a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
73665a0
bf613f1
* Wed Jul  8 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-93
bf613f1
- scanf format length fix (non exploitable?) from Fabian Hugelshofer <hugelshofer2006@gmx.ch>
bf613f1
- URL tag changed to http://net-tools.berlios.de/
bf613f1
a7a4365
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-92
a7a4365
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a7a4365
Zdenek Prikryl 92c62c4
* Thu Oct 16 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-91
Zdenek Prikryl 92c62c4
- fixed tcp timers info in netstat (#466845)
Zdenek Prikryl 92c62c4
Zdenek Prikryl d2b1228
* Thu Sep 25 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-90
Zdenek Prikryl d2b1228
- fixed ifconfig's man page (#454271, #432328)
Zdenek Prikryl d2b1228
Zdenek Prikryl aae62ea
* Tue Jul 15 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-89
Zdenek Prikryl 99941ed
- fixed man pages for arp (#446195)
Zdenek Prikryl 99941ed
- fixed netstat --interfaces option (#446187)
Zdenek Prikryl 99941ed
- fixed clearing flags in ifconfig (#450252)
Zdenek Prikryl 99941ed
39bd546
* Tue Jul  8 2008 Radek Vokál <rvokal@redhat.com> - 1.60-88
39bd546
- netstat displays correct sctp statistics (#445535) <zprikryl@redhat.com>
39bd546
39bd546
* Tue Mar  4 2008 Radek Vokál <rvokal@redhat.com> - 1.60-87
b145ae5
- fix buffer for newer kernels (#435554)
b145ae5
8046b57
* Mon Feb 25 2008 Radek Vokal <rvokal@redhat.com> - 1.60-86
8046b57
- fix for GCC 4.3
8046b57
beeba92
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.60-85
beeba92
- Autorebuild for GCC 4.3
beeba92
6e7502c
* Thu Aug 23 2007 Radek Vokál <rvokal@redhat.com> - 1.60-84
6e7502c
- rebuilt
6e7502c
2a549cc
* Fri Jun  8 2007 Radek Vokál <rvokal@redhat.com> - 1.60-83
2a549cc
- fix netplugd init script (#242919)
2a549cc
5fc1756
* Tue May 22 2007 Radek Vokál <rvokal@redhat.com> - 1.60-82
5fc1756
- better SELinux patch by <dwalsh@redhat.com>
5fc1756
8add397
* Tue Mar 27 2007 Radek Vokál <rvokal@redhat.com> - 1.60-81
8add397
- fix segfault for empty interface (#234045)
8add397
98ec964
* Thu Mar 15 2007 Radek Vokál <rvokal@redhat.com> - 1.60-80
98ec964
- we don't have -n/--node option (#225554)
98ec964
bed148d
* Thu Feb 22 2007 Radek Vokál <rvokal@redhat.com> - 1.60-79
bed148d
- quiet sctp (#229232)
bed148d
df75c09
* Mon Feb 19 2007 Radek Vokál <rvokal@redhat.com> - 1.60-78
df75c09
- spec file cleanup (#226193)
df75c09
c35c0ca
* Tue Jan 30 2007 Radek Vokál <rvokal@redhat.com> - 1.60-77
c35c0ca
- touch /etc/ethers (#225381)
c35c0ca
de3645c
* Wed Dec 27 2006 Radek Vokál <rvokal@redhat.com> - 1.60-76
de3645c
- fix arp unaligned access (#220438)
de3645c
5714994
* Wed Oct  4 2006 Radek Vokal <rvokal@redhat.com> - 1.60-75
5714994
- fix nameif crash for 16char long interface names (#209120)
5714994
57e1edd
* Mon Oct  2 2006 Radek Vokal <rvokal@redhat.com> - 1.60-74
57e1edd
- fix -I option for nestat, works as -I=eth0 again.
57e1edd
- add dist tag
57e1edd
f5144c4
* Mon Aug  7 2006 Radek Vokal <rvokal@redhat.com> - 1.60-73
f5144c4
- directory entries . and .. should be skipped
f5144c4
d4ba016
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.60-72.1
d4ba016
- rebuild
d4ba016
3f54dc3
* Wed Jun  7 2006 Radek Vokal <rvokal@redhat.com> - 1.60-72
3f54dc3
- switch --trim to --notrim .. make it less confusing 
3f54dc3
1982cdf
* Fri May 19 2006 Radek Vokal <rvokal@redhat.com> - 1.60-71
1982cdf
- BuildRequires: libselinux-devel (#191737)
1982cdf
8124c94
* Tue May 09 2006 Radek Vokál <rvokal@redhat.com> - 1.60-70
8124c94
- add netdevice.h, fix x25
8124c94
- fix ifconfig crash when interface name is too long (#190703)
8124c94
ec6a611
* Tue May 02 2006 Radek Vokál <rvokal@redhat.com> - 1.60-69
ec6a611
- fix arp man page to correspond to man ethers (#190425)
ec6a611
89e4517
* Fri Apr 14 2006 Radek Vokál <rvokal@redhat.com> - 1.60-68
89e4517
- display sctp connections using netstat -S <jbj@redhat.com>
89e4517
5997450
* Thu Apr 13 2006 Radek Vokál <rvokal@redhat.com> - 1.60-67
5997450
- fix wrong definition of _PATH_PROCNET_X25_ROUTE (#188786)
5997450
53df30c
* Thu Apr 06 2006 Radek Vokál <rvokal@redhat.com> - 1.60-66
53df30c
- add note about -T to netstat
53df30c
bdfa7ff
* Thu Mar 30 2006 Radek Vokál <rvokal@redhat.com> - 1.60-65
f3e07cc
- add note to ifconfig(8) about supported format for IPv4 addresses (#176661)
f3e07cc
bdfa7ff
* Thu Mar 16 2006 Radek Vokál <rvokal@redhat.com> - 1.60-64
02ab27f
- remove duplicate arp entries (#185604)
02ab27f
45b00be
* Thu Feb 23 2006 Radek Vokál <rvokal@redhat.com> - 1.60-63
45b00be
- show inodes in netstat (#180974)
45b00be
5fd0ffa
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.60-62.1
5fd0ffa
- bump again for double-long bug on ppc(64)
5fd0ffa
9d2e499
* Fri Feb 10 2006 Radek Vokál <rvokal@redhat.com> - 1.60-62
9d2e499
- new option for netstat - -T stops trimming remote and local addresses (#176465)
9d2e499
f3b2b42
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.60-61.1
f3b2b42
- rebuilt for new gcc4.1 snapshot and glibc changes
f3b2b42
76db106
* Mon Feb 06 2006 Radek Vokál <rvokal@redhat.com> 1.60-61
76db106
- mii-tool manpage fixed (#180055)
76db106
513e1bc
* Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 1.60-60
513e1bc
- forget to enable the new selinux option :( - config.make changed
513e1bc
0c92807
* Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 1.60-59
0c92807
- new option for nestat, -Z shows selinux context. Patch by <dwalsh@redhat.com>
0c92807
331d28b
* Mon Jan 02 2006 Radek Vokal <rvokal@redhat.com> 1.60-58
331d28b
- clear static buffers in interface.c by <drepper@redhat.com> (#176714)
331d28b
dadb24d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
dadb24d
- rebuilt
dadb24d
027a461
* Sat Oct 15 2005 Radek Vokal <rvokal@redhat.com> 1.60-57
027a461
- add note to hostname man page about gethostbyname() (#166581)
e6ca95f
- don't ship any rarp man page (#170537)
e6ca95f
988b98b
* Wed Aug 03 2005 Radek Vokal <rvokal@redhat.com> 1.60-56
988b98b
- fixed buffer overflow in arp (#164695)
988b98b
b4d0d93
* Wed Jul 20 2005 Radek Vokal <rvokal@redhat.com> 1.60-55
b4d0d93
- ifconfig - fixed virtual interface dropping (#162888)
b4d0d93
54cc394
* Wed Jun 22 2005 Radek Vokal <rvokal@redhat.com> 1.60-54
54cc394
- fr man pages are back (#159702)
54cc394
a1a27b9
* Mon Jun 06 2005 Radek Vokal <rvokal@redhat.com> 1.60-53
a1a27b9
- etherwake man page changed to ether-wake (#159156)
a1a27b9
e9cf15f
* Tue Apr 26 2005 Radek Vokal <rvokal@redhat.com> 1.60-52
e9cf15f
- don't show "duplicate line" warning (#143933)
e9cf15f
- netstat has new statistcs (#133032)
27ef15f
- /etc/neplug is owned by net-tools (#130621)
27ef15f
302f50c
* Tue Apr 05 2005 Radek Vokal <rvokal@redhat.com> 1.60-51
302f50c
- flush output in mii-tool (#152568)
302f50c
7ab46c3
* Wed Mar 30 2005 Radek Vokal <rvokal@redhat.com> 1.60-50
7ab46c3
- added mii-diag tool
7ab46c3
- added newer ether-wake
7ab46c3
- remove useless -i option from ifconfig
7ab46c3
- stop trimming interface names (#152457)
7ab46c3
Elliot Lee 67d6967
* Wed Mar 16 2005 Elliot Lee <sopwith@redhat.com>
Elliot Lee 67d6967
- rebuilt
Elliot Lee 67d6967
516105d
* Tue Mar 01 2005 Radek Vokal <rvokal@redhat.com> 1.60-48
516105d
- behaviour of netstat -i option changed (#115987)
516105d
- netstat -i shows all interface, -I<Iface> only one
516105d
119bde2
* Mon Feb 28 2005 Radek Vokal <rvokal@redhat.com> 1.60-47
119bde2
- added RPM_OPT_FLAGS
119bde2
- execshield patch for netplug <t8m@redhat.com>
119bde2
e93ed55
* Wed Feb 16 2005 Radek Vokal <rvokal@redhat.com> 1.60-46
e93ed55
- small typo in german translation (#148775)
e93ed55
1bf9a7d
* Wed Feb 09 2005 Radek Vokal <rvokal@redhat.com> 1.60-45
1bf9a7d
- included infiniband support (#147396) <tduffy@sun.com>
1bf9a7d
- added etherwake man page
1bf9a7d
ebeb31b
* Mon Feb 07 2005 Radek Vokal <rvokal@redhat.com> 1.60-44
ebeb31b
- net-plug-1.2.9 - no changes, upstream included Red Hat patches
ebeb31b
- ether-wake-1.08 - few changes in implementation (#145718)
ebeb31b
3e6663a
* Mon Jan 10 2005 Radek Vokal <rvokal@redhat.com> 1.60-43
3e6663a
- don't report statistics for virtual devices (#143981) <kzak@redhat.com>
3e6663a
- fixing translation headers - content type format
3e6663a
- kill bitkeeper warning messages
3e6663a
287e357
* Fri Dec 03 2004 Radek Vokal <rvokal@redhat.com> 1.60-42
287e357
- filter out duplicate tcp entries (#139407)
287e357
6390381
* Thu Nov 25 2004 Radek Vokal <rvokal@redhat.com> 1.60-41
6390381
- added note to hostname(1) (#140239)
6390381
- fixed --num-ports option for netstat (#115100)
6390381
01b569c
* Thu Nov 11 2004 Radek Vokal <rvokal@redhat.com> 1.60-40
01b569c
- mii-tool(8) fixed, labeled as obsolete, added info (#138687)
6390381
- netstat crashing on i64 fixed (#138804) Patch by <Andreas.Hirstius@cern.ch>
01b569c
e0bf701
* Thu Nov 04 2004 Radek Vokal <rvokal@redhat.com> 1.60-39
e0bf701
- IBM patch for netstat -s returning negative values on 64bit arch (#144064)
e0bf701
- broadcast calulated if only netmask provided (#60509)
e0bf701
2c13669
* Tue Nov 02 2004 Radek Vokal <rvokal@redhat.com> 1.60-38
2c13669
- fixed fail to assign the specified netmask before adress is assigned
2c13669
- patch by Malita, Florin <florin.malita@glenayre.com>
2c13669
7151ccf
* Wed Sep 29 2004 Radek Vokal <rvokal@redhat.com> 1.60-37
7151ccf
- spec file updated, added conversion for french and portugal man pages to UTF-8
7151ccf
cvsdist eb32cc8
* Mon Sep 06 2004 Radek Vokal <rvokal@redhat.com> 1.60-36
cvsdist eb32cc8
- parse error fixed (#131539)
cvsdist eb32cc8
cvsdist 10d380a
* Fri Sep 03 2004 Radek Vokal <rvokal@redhat.com> 1.60-35
cvsdist 10d380a
- The return value of nameif was wrong (#129032) - patch from Fujitsu QA 
cvsdist 10d380a
774ed84
* Mon Aug 30 2004 Radek Vokal <rvokal@redhat.com> 1.60-34
cvsdist 25c1660
- Trunc patch added (#128359)
cvsdist 25c1660
cvsdist e568124
* Mon Aug 30 2004 Radek Vokal <rvokal@redhat.com> 1.60-33
cvsdist e568124
- Added patch for SI units by Tom "spot" Callaway <tcallawa@redhat.com> #118006
cvsdist e568124
cvsdist a940152
* Tue Aug 17 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-32
cvsdist a940152
- Fix installopts for netplug.
cvsdist a940152
cvsdist a7f1477
* Sun Aug 08 2004 Alan Cox <alan@redhat.com> 1.60-31
cvsdist a7f1477
- Build requires gettext.
cvsdist a7f1477
cvsdist 1955e9e
* Mon Aug 02 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-30
cvsdist 1955e9e
- Update to latest netplugd version.
cvsdist 1955e9e
cvsdist 7691c88
* Mon Jul 12 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-29
cvsdist 7691c88
- Fixed initscript patch for netplug (#127351)
cvsdist 7691c88
cvsdist e963a4b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist e963a4b
- rebuilt
cvsdist e963a4b
cvsdist 9b13b6b
* Fri May 14 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-27
cvsdist 9b13b6b
- Fixed compiler warning/error in netplug.
cvsdist 9b13b6b
- Updated to netplug-1.2.6 for security update and fixes.
cvsdist 9b13b6b
cvsdist 70b9ea9
* Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-26
cvsdist 70b9ea9
- Updated netplugd to latest upstream version.
cvsdist 70b9ea9
- Fixed execshield problem in main.c of netplugd.
cvsdist 70b9ea9
cvsdist 10a94dd
* Thu Apr 15 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-25
cvsdist 10a94dd
- Fixed several possible buffer overflows (#120343)
cvsdist 10a94dd
cvsdist 10a94dd
* Tue Mar 30 2004 Harald Hoyer <harald@redhat.com> - 1.60-24
cvsdist 10a94dd
- fixed compilation with gcc34
cvsdist 10a94dd
cvsdist 6c2b2dd
* Tue Mar 23 2004 Karsten Hopp <karsten@redhat.de> 1.60-23 
cvsdist 6c2b2dd
- add chkconfig call in post and preun, fix init script (#116555)
cvsdist 6c2b2dd
cvsdist 6c2b2dd
* Thu Feb 19 2004 Phil Knirsch <pknirsch@redhat.com>
cvsdist 6c2b2dd
- Added netplug-1.2.1 to net-tools (FR #103419).
cvsdist 6c2b2dd
cvsdist 6c2b2dd
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 6c2b2dd
- rebuilt
cvsdist 6c2b2dd
cvsdist 14587f6
* Mon Aug 25 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-20.1
cvsdist 14587f6
-rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Mon Aug 25 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-20
cvsdist 14587f6
- interface option now works as described in the man page (#61113).
cvsdist 14587f6
cvsdist 14587f6
* Tue Aug 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-19.1
cvsdist 14587f6
- rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Tue Aug 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-19
cvsdist 14587f6
- Fixed trailing blank bug in hostname output (#101263).
cvsdist 14587f6
- Remove -O2 fir alpha (#78955).
cvsdist 14587f6
- Updated netstat statistic output, was still broken.
cvsdist 14587f6
cvsdist 14587f6
* Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-18.1
cvsdist 14587f6
- rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-18
cvsdist 14587f6
- fix ether-wake.c build with gcc 3.3
cvsdist 14587f6
- rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 14587f6
- rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Wed Jun 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-16.1
cvsdist 14587f6
- Bumped release and rebuilt
cvsdist 14587f6
cvsdist 14587f6
* Fri May 23 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-16
cvsdist 14587f6
- Fixed ether-wake usage output (#55801).
cvsdist 14587f6
cvsdist 14587f6
* Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 1.60-15
cvsdist 14587f6
- fix build with gcc 3.3
cvsdist 14587f6
cvsdist 14587f6
* Thu May 22 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-14
cvsdist 14587f6
- Fixed wrong manpage (#55473).
cvsdist 14587f6
cvsdist 14587f6
* Wed May 21 2003 Phil Knirsch <pknirsch@redhat.com>
cvsdist 14587f6
- Added inet6-lookup patch from John van Krieken (#84108).
cvsdist 14587f6
- Fixed outdated link in ifconfig manpage (#91287).
cvsdist 14587f6
cvsdist 14587f6
* Tue May 20 2003 Phil Knirsch <pknirsch@redhat.com>
cvsdist 14587f6
- Fixed incorrect address display for ipx (#46434).
cvsdist 14587f6
- Fixed wrongly installed manpage dirs (#50664).
cvsdist 14587f6
cvsdist 14587f6
* Wed Mar 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-13
cvsdist 14587f6
- Fixed nameif problem (#85748).
cvsdist 14587f6
cvsdist 14587f6
* Fri Feb 07 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-12
cvsdist 5f913e2
- Fixed -s parameter.
cvsdist 5f913e2
- Fix /proc statistics for -nic operation.
cvsdist 5f913e2
- Fixed -i operation in general.
cvsdist 5f913e2
cvsdist 5f913e2
* Mon Jan 27 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-11
cvsdist 5f913e2
- Disable smp build.
cvsdist 5f913e2
cvsdist 5f913e2
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.60-10
cvsdist 5f913e2
- rebuilt
cvsdist 5f913e2
cvsdist 5f913e2
* Tue Dec 17 2002 Phil Knirsch <pknirsch@redhat.com> 1.60-9
cvsdist 5f913e2
- Rebuild
cvsdist 5f913e2
- Copyright -> License.
cvsdist 5f913e2
cvsdist 5f913e2
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 1.60-8
cvsdist 5f913e2
- Rebuild
cvsdist 5f913e2
cvsdist d8c30f6
* Tue Aug 06 2002 Phil Knirsch <pknirsch@redhat.com> 
cvsdist d8c30f6
- Added patch from Norm for a corrected output.
cvsdist d8c30f6
cvsdist 4b181fa
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 4b181fa
- automated rebuild
cvsdist 4b181fa
cvsdist 4b181fa
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist 4b181fa
- automated rebuild
cvsdist 4b181fa
cvsdist 0d01487
* Fri Apr 12 2002 Jeremy Katz <katzj@redhat.com>
cvsdist 0d01487
- fix nstrcmp() to be correct in the case where there are many devices 
cvsdist 0d01487
  of the same type, eg, "eth10" > "eth1"  (#61436)
cvsdist 0d01487
cvsdist 8ce4605
* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
cvsdist 8ce4605
- do *not* use SIOCDEVPRIVATE for MII ioctls
cvsdist 8ce4605
cvsdist 2b639f3
* Fri Jun  1 2001 Preston Brown <pbrown@redhat.com>
cvsdist 2b639f3
- include wake-on-lan wakeup utility, ether-wake by Donald Becker
cvsdist 2b639f3
cvsdist 1a69260
* Wed Apr 18 2001 Crutcher Dunnavant <crutcher@redhat.com>
cvsdist 1a69260
- itterate to 1.60
cvsdist 1a69260
cvsdist 493a8e0
* Sun Apr  8 2001 Preston Brown <pbrown@redhat.com>
cvsdist 493a8e0
- use find_lang macro
cvsdist 493a8e0
- less specific locale dirs for man pages
cvsdist 493a8e0
cvsdist 493a8e0
* Mon Apr  2 2001 Preston Brown <pbrown@redhat.com>
cvsdist 493a8e0
- don't use this version of rarp, doesn't work with our 2.4.
cvsdist 493a8e0
cvsdist 493a8e0
* Tue Feb  6 2001 Crutcher Dunnavant <crutcher@redhat.com>
cvsdist 493a8e0
- fixed man page typo, closing bug #25921
cvsdist 493a8e0
774ed84
* Thu Feb  1 2001 Crutcher Dunnavant <crutcher@redhat.com>
cvsdist 493a8e0
- applied twaugh's patch to close bug #25474
cvsdist 493a8e0
- which was a buffer length bug.
cvsdist 493a8e0
cvsdist 493a8e0
* Wed Dec 27 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 493a8e0
- locales not initialized correctly (#20570).
cvsdist 493a8e0
- arp: document -e option (#22040).
cvsdist 493a8e0
cvsdist 7ab5248
* Sat Oct  7 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 7ab5248
- update to 1.57.
cvsdist 7ab5248
- MTU (and other) option(s) not parsed correctly (#9215).
cvsdist 7ab5248
- allow more granularity iwth --numeric (#9129).
cvsdist 7ab5248
cvsdist a419bb4
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist a419bb4
- automatic rebuild
cvsdist a419bb4
cvsdist a419bb4
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.56.
cvsdist a419bb4
- FHS packaging.
cvsdist a419bb4
cvsdist a419bb4
* Sat Apr 15 2000 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.55.
cvsdist a419bb4
cvsdist a419bb4
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- rebuild for sparc baud rates > 38400.
cvsdist a419bb4
cvsdist a419bb4
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
cvsdist a419bb4
- fix description
cvsdist a419bb4
cvsdist a419bb4
* Fri Jan 14 2000 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- fix "netstat -ci" (#6904).
cvsdist a419bb4
- document more netstat options (#7429).
cvsdist a419bb4
cvsdist a419bb4
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.54.
cvsdist a419bb4
- enable "everything but DECnet" including IPv6.
cvsdist a419bb4
cvsdist a419bb4
* Sun Aug 29 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.53.
cvsdist a419bb4
cvsdist a419bb4
* Wed Jul 28 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- plug "netstat -c" fd leak (#3620).
cvsdist a419bb4
cvsdist a419bb4
* Thu Jun 17 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- plug potential buffer overruns.
cvsdist a419bb4
cvsdist a419bb4
* Sat Jun 12 1999 John Hardin <jhardin@wolfenet.com>
cvsdist a419bb4
- patch to recognize ESP and GRE protocols for VPN masquerade
cvsdist a419bb4
cvsdist a419bb4
* Fri Apr 23 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.52.
cvsdist a419bb4
cvsdist a419bb4
* Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update interface statistics continuously (#1323)
cvsdist a419bb4
cvsdist a419bb4
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist a419bb4
- auto rebuild in the new build environment (release 2)
cvsdist a419bb4
cvsdist a419bb4
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.51.
cvsdist a419bb4
- strip binaries.
cvsdist a419bb4
cvsdist a419bb4
* Tue Feb  2 1999 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.50.
cvsdist a419bb4
- added slattach/plipconfig/ipmaddr/iptunnel commands.
cvsdist a419bb4
- enabled translated man pages.
cvsdist a419bb4
cvsdist a419bb4
* Tue Dec 15 1998 Jakub Jelinek <jj@ultra.linux.cz>
cvsdist a419bb4
- update to 1.49.
cvsdist a419bb4
cvsdist a419bb4
* Sat Dec  5 1998 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.48.
cvsdist a419bb4
cvsdist a419bb4
* Thu Nov 12 1998 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.47.
cvsdist a419bb4
cvsdist a419bb4
* Wed Sep  2 1998 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- update to 1.46
cvsdist a419bb4
cvsdist a419bb4
* Thu Jul  9 1998 Jeff Johnson <jbj@redhat.com>
cvsdist a419bb4
- build root
cvsdist a419bb4
- include ethers.5
cvsdist a419bb4
cvsdist a419bb4
* Thu Jun 11 1998 Aron Griffis <agriffis@coat.com>
cvsdist a419bb4
- upgraded to 1.45
cvsdist a419bb4
- patched hostname.c to initialize buffer
cvsdist a419bb4
- patched ax25.c to use kernel headers
cvsdist a419bb4
cvsdist a419bb4
* Fri May 01 1998 Prospector System <bugs@redhat.com>
cvsdist a419bb4
- translations modified for de, fr, tr
cvsdist a419bb4
cvsdist a419bb4
* Fri Feb 27 1998 Jason Spangler <jasons@usemail.com>
cvsdist a419bb4
- added config patch
cvsdist a419bb4
cvsdist a419bb4
* Fri Feb 27 1998 Jason Spangler <jasons@usemail.com>
cvsdist a419bb4
- changed to net-tools 1.432
cvsdist a419bb4
- removed old glibc 2.1 patch
cvsdist a419bb4
 
cvsdist a419bb4
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
cvsdist a419bb4
- added extra patches for glibc 2.1
cvsdist a419bb4
cvsdist a419bb4
* Tue Oct 21 1997 Erik Troan <ewt@redhat.com>
cvsdist a419bb4
- included complete set of network protocols (some were removed for
cvsdist a419bb4
  initial glibc work)
cvsdist a419bb4
cvsdist a419bb4
* Wed Sep 03 1997 Erik Troan <ewt@redhat.com>
cvsdist a419bb4
- updated glibc patch for glibc 2.0.5
cvsdist a419bb4
cvsdist a419bb4
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
cvsdist a419bb4
- built against glibc
cvsdist a419bb4
- updated to 1.33