]> git.ipfire.org Git - thirdparty/iproute2.git/log
thirdparty/iproute2.git
20 years agoAdd usage for ip -batch
shemminger [Thu, 1 Sep 2005 22:29:33 +0000 (22:29 +0000)] 
Add usage for ip -batch

20 years agoadd usage for batch to tc.
shemminger [Thu, 1 Sep 2005 22:29:05 +0000 (22:29 +0000)] 
add usage for batch to tc.

20 years agoUpdate header files to 2.6.14
shemminger [Thu, 1 Sep 2005 19:21:50 +0000 (19:21 +0000)] 
Update header files to 2.6.14
Integrate support for DCCP and tcp_diag into ss
Add -batch to ip command

20 years agoChangeLog entry
shemminger [Thu, 1 Sep 2005 18:12:33 +0000 (18:12 +0000)] 
ChangeLog entry

20 years agoCould you please apply this patch.
shemminger [Thu, 1 Sep 2005 18:11:03 +0000 (18:11 +0000)] 
Could you please apply this patch.

* Fix lnstat : First column should not be summed

Thank you

Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
20 years agoSNAPSHOT update for build ss-050816
shemminger [Tue, 16 Aug 2005 21:13:19 +0000 (21:13 +0000)] 
SNAPSHOT update for build

20 years agoUpdate include files and fix a couple of minor bugs
shemminger [Tue, 16 Aug 2005 21:10:51 +0000 (21:10 +0000)] 
Update include files and fix a couple of minor bugs

20 years agoUpdate to latest kernel headers. ss-050808
shemminger [Mon, 8 Aug 2005 20:24:41 +0000 (20:24 +0000)] 
Update to latest kernel headers.
Fix out of range on paretonormal

20 years agoFix ematch warnings with GCC4.0
shemminger [Thu, 14 Jul 2005 16:49:27 +0000 (16:49 +0000)] 
Fix ematch warnings with GCC4.0

20 years agoThomas's ematch fixes for lex.
shemminger [Fri, 8 Jul 2005 22:08:47 +0000 (22:08 +0000)] 
Thomas's ematch fixes for lex.
Fix more GCC signedness warnings.

20 years agoCleanup GCC4 warnings about signedness.
shemminger [Tue, 5 Jul 2005 22:37:15 +0000 (22:37 +0000)] 
Cleanup GCC4 warnings about signedness.

20 years agoFix build issues
shemminger [Tue, 5 Jul 2005 22:11:37 +0000 (22:11 +0000)] 
Fix build issues

21 years agoMore missing files.
shemminger [Thu, 23 Jun 2005 20:37:43 +0000 (20:37 +0000)] 
More missing files.

21 years agoNew files in testsuite update (damn CVS)
shemminger [Thu, 23 Jun 2005 20:31:37 +0000 (20:31 +0000)] 
New files in testsuite update (damn CVS)

21 years agoMore missing cvs adds..
shemminger [Thu, 23 Jun 2005 20:29:43 +0000 (20:29 +0000)] 
More missing cvs adds..

21 years agoand the .h file..
shemminger [Thu, 23 Jun 2005 20:27:02 +0000 (20:27 +0000)] 
and the .h file..

21 years agoOverlooked one more file.
shemminger [Thu, 23 Jun 2005 20:26:01 +0000 (20:26 +0000)] 
Overlooked one more file.

21 years agoAdd new extended match files.
shemminger [Thu, 23 Jun 2005 20:25:16 +0000 (20:25 +0000)] 
Add new extended match files.

21 years agoAdd kernel stripped version of file to repo.
shemminger [Thu, 23 Jun 2005 20:24:15 +0000 (20:24 +0000)] 
Add kernel stripped version of file to repo.

21 years agoTest suite update from Thomas Graf
shemminger [Thu, 23 Jun 2005 20:18:38 +0000 (20:18 +0000)] 
Test suite update from Thomas Graf

21 years agoBuild of ematch requires bison extensions to yacc.
shemminger [Thu, 23 Jun 2005 20:16:43 +0000 (20:16 +0000)] 
Build of ematch requires bison extensions to yacc.

21 years agoThe symlink commands create absolute symlinks instead of relative.
shemminger [Thu, 23 Jun 2005 17:39:57 +0000 (17:39 +0000)] 
The symlink commands create absolute symlinks instead of relative.
This causes dangling links in case the package is installed using
DESTDIR. Some package managers will report this as an error.

21 years agoFrom: Pablo Neira
shemminger [Thu, 23 Jun 2005 17:36:38 +0000 (17:36 +0000)] 
From: Pablo Neira

Hi jamal,

I found some spare time to play around a bit more with you ipt action stuff.

I've tested the patch attached with the testcase here below. It works
fine here. It fixes broken target option checkings (final_check) and a
leak in the merge_options function. I've killed copy_options since I
didn't find any reason why we need it.

--- test.sh ---
tc qdisc del dev wlan0 ingress
tc qdisc add dev wlan0 ingress
tc filter add dev wlan0 parent ffff: protocol ip prio 6 u32 \
match ip src 192.168.0.2/32 flowid 1:16 \
action ipt -j TOS --set-tos Maximize-Reliability
sleep 3
tc -s filter ls dev wlan0 parent ffff:
--- end of test.sh ---

Results:

tablename: mangle hook: NF_IP_PRE_ROUTING
         target: TOS set Maximize-Reliability  index 0
filter protocol ip pref 6 u32
filter protocol ip pref 6 u32 fh 800: ht divisor 1
filter protocol ip pref 6 u32 fh 800::800 order 2048 key ht 800 bkt 0
flowid 1:16
   match c0a80002/ffffffff at 12
         action order 1: tablename: mangle  hook: NF_IP_PRE_ROUTING
         target TOS set Maximize-Reliability
         index 18 ref 1 bind 1 installed 3 sec used 0 sec
         Action statistics:
         Sent 725 bytes 7 pkt (dropped 0, overlimits 0 requeues 0)
         rate 0bit 0pps backlog 0b 0p requeues 0

Now, check if options passed to the target are correct.

# tc filter add dev wlan0 parent ffff: protocol ip prio 6 u32 \
match ip dst 192.168.0.2/32 flowid 1:16 \
action ipt -j TOS --set-tos
                             ^^^
                         missing parameter

ipt: option `--set-tos' requires an argument
tc-ipt v0.1: TOS target: Parameter --set-tos is required
Try `tc-ipt -h' or 'tc-ipt --help' for more information.

btw, how's your schedule ? did you finally get spare time to come to the
netfilter workshop in seville ?

bye,
Pablo

21 years agoChangeLog update for Thomas's patches
shemminger [Thu, 23 Jun 2005 17:33:56 +0000 (17:33 +0000)] 
ChangeLog update for Thomas's patches

21 years agoFix off-by-one while generating argument vector
shemminger [Thu, 23 Jun 2005 17:32:22 +0000 (17:32 +0000)] 
Fix off-by-one while generating argument vector

21 years agoAdd cscope target to Makefile
shemminger [Thu, 23 Jun 2005 17:31:49 +0000 (17:31 +0000)] 
Add cscope target to Makefile

21 years agoIPv4 multipath algorithm selection support
shemminger [Thu, 23 Jun 2005 17:31:27 +0000 (17:31 +0000)] 
IPv4 multipath algorithm selection support

21 years agoAdd ematch cleanup
shemminger [Thu, 23 Jun 2005 17:23:53 +0000 (17:23 +0000)] 
Add ematch cleanup

21 years agoAdd etc/iproute2/ematch_map
shemminger [Thu, 23 Jun 2005 17:22:43 +0000 (17:22 +0000)] 
Add etc/iproute2/ematch_map

21 years agoAdd extended matches (nbyte, cmp, u32, meta)
shemminger [Thu, 23 Jun 2005 17:21:46 +0000 (17:21 +0000)] 
Add extended matches (nbyte, cmp, u32, meta)

21 years agoNetem support for reorder
shemminger [Wed, 22 Jun 2005 18:27:49 +0000 (18:27 +0000)] 
Netem support for reorder
Update include files and add support for TCP_CONG

21 years agoDecnet documentation update
shemminger [Mon, 13 Jun 2005 18:47:56 +0000 (18:47 +0000)] 
Decnet documentation update

21 years agoUpdate snapshot ss050607
shemminger [Tue, 7 Jun 2005 22:17:21 +0000 (22:17 +0000)] 
Update snapshot

21 years agoDevice indices are unsigned and use if_nametoindex as fallback
shemminger [Tue, 7 Jun 2005 22:15:48 +0000 (22:15 +0000)] 
Device indices are unsigned and use if_nametoindex as fallback

21 years agoMasahide NAKAMURA <nakam@linux-ipv6.org>
shemminger [Tue, 7 Jun 2005 21:58:25 +0000 (21:58 +0000)] 
Masahide NAKAMURA <nakam@linux-ipv6.org>

It fixes flush feature for IPsec(ip xfrm).
Jamal gave me comment about it. I've tested it on 2.6.11.7.
Please find the log below, check code and pull it:

bk://bk.skbuff.net:38000/iproute2-xfrm-flush

ChangeSet@1.182, 2005-04-13 21:19:44+09:00, nakam@linux-ipv6.org
  [ip] add "deleteall" command for xfrm;
  "flush" uses kernel's flush interface and
  "deleteall" uses legacy iproute2's flush feature like
  getting-and-deleting-for-each.

21 years agoMonitor time patch from Masahide NAKAMURA
shemminger [Tue, 7 Jun 2005 21:55:55 +0000 (21:55 +0000)] 
Monitor time patch from Masahide NAKAMURA

21 years agoThese two ChangeSets are for iproute2;
shemminger [Tue, 7 Jun 2005 21:55:03 +0000 (21:55 +0000)] 
These two ChangeSets are for iproute2;

One adds timestamp option (-t) to ip's monitoring
like `ip -t monitor` or `ip -t xfrm monitor`. This is commented by Jamal.
The other is a minor fix for xfrm monitor.

21 years agoCVS forgets permissions on files, so use sh to run configure
shemminger [Tue, 7 Jun 2005 21:48:09 +0000 (21:48 +0000)] 
CVS forgets permissions on files, so use sh to run configure

21 years agoadd more changelog entries about what in to last release
osdl.net!shemminger [Fri, 1 Apr 2005 19:56:29 +0000 (19:56 +0000)] 
add more changelog entries about what in to last release

(Logical change 1.184)

21 years agoChangeLog: v2_6_11-050330
osdl.net!shemminger [Fri, 1 Apr 2005 19:56:29 +0000 (19:56 +0000)] 
ChangeLog:
  add more changelog entries about what in to last release

BKrev: 424da76d4z6qfhZ7QZX861nvo__l7w

21 years agoFix build problem on 2.4 v2_6_11-050314
osdl.net!shemminger [Wed, 30 Mar 2005 18:51:35 +0000 (18:51 +0000)] 
Fix build problem on 2.4

BKrev: 424af537WSbjQwKNDk8rE7lj52TmkA

21 years agoFix build problem on 2.4
osdl.net!shemminger [Wed, 30 Mar 2005 18:51:35 +0000 (18:51 +0000)] 
Fix build problem on 2.4

(Logical change 1.183)

21 years agoiproute2-ss050330
osdl.net!shemminger [Wed, 30 Mar 2005 18:44:41 +0000 (18:44 +0000)] 
iproute2-ss050330

(Logical change 1.182)

21 years agoSNAPSHOT.h:
osdl.net!shemminger [Wed, 30 Mar 2005 18:44:41 +0000 (18:44 +0000)] 
SNAPSHOT.h:
  iproute2-ss050330

BKrev: 424af399JQYu_2ttnS6tz5JSjXwvWQ

21 years agoupdate to latest from 2.6.12-rc2
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
update to latest from 2.6.12-rc2

(Logical change 1.181)

21 years agoadd action stats
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
add action stats

(Logical change 1.181)

21 years agoUpdates from Jamal
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
Updates from Jamal

BKrev: 424af35291CI65EqxI1ospOYj74TPw

21 years agoUpdates from Jamal
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
Updates from Jamal

(Logical change 1.181)

21 years agoFix from jamal
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
Fix from jamal

2005/03/25 04:34:05-08:00 net[shemminger]!shemminger
Import patch p2_mirred

(Logical change 1.181)

21 years ago(Logical change 1.181)
osdl.net!shemminger [Wed, 30 Mar 2005 18:43:30 +0000 (18:43 +0000)] 
(Logical change 1.181)

21 years agop_mipt
net[shemminger]!shemminger [Wed, 30 Mar 2005 18:19:55 +0000 (18:19 +0000)] 
p_mipt

BKrev: 424aedcbBvlxDe6AqCwiiD1p-LouEA

21 years agoImport patch p_mipt
net[shemminger]!shemminger [Wed, 30 Mar 2005 18:19:55 +0000 (18:19 +0000)] 
Import patch p_mipt

(Logical change 1.180)

21 years agoFix netlink message alignment when the last routing attribute added
osdl.net!shemminger [Wed, 30 Mar 2005 18:18:12 +0000 (18:18 +0000)] 
Fix netlink message alignment when the last routing attribute added
has a data length not aligned to RTA_ALIGNTO.

BKrev: 424aed64MzJYUabiev8JKIIUgAN3tw

21 years agoFix netlink message alignment when the last routing attribute added
osdl.net!shemminger [Wed, 30 Mar 2005 18:18:12 +0000 (18:18 +0000)] 
Fix netlink message alignment when the last routing attribute added
has a data length not aligned to RTA_ALIGNTO.

(Logical change 1.179)

21 years agoImport patch netlink-align
net[shemminger]!shemminger [Wed, 30 Mar 2005 18:18:12 +0000 (18:18 +0000)] 
Import patch netlink-align

(Logical change 1.179)

21 years agoutils.c, ipaddress.c, utils.h, ChangeLog:
osdl.net!shemminger [Wed, 30 Mar 2005 18:16:10 +0000 (18:16 +0000)] 
utils.c, ipaddress.c, utils.h, ChangeLog:
  Import patch addr-del

BKrev: 424aeceauOGm2wfD90ZInaZJ9gUbaw

21 years agoImport patch addr-del
net[shemminger]!shemminger [Wed, 30 Mar 2005 18:16:10 +0000 (18:16 +0000)] 
Import patch addr-del

(Logical change 1.178)

21 years agoadd comments about last changeset
osdl.net!shemminger [Wed, 30 Mar 2005 18:14:55 +0000 (18:14 +0000)] 
add comments about last changeset

(Logical change 1.177)

21 years agoChangeLog:
osdl.net!shemminger [Wed, 30 Mar 2005 18:14:55 +0000 (18:14 +0000)] 
ChangeLog:
  add comments about last changeset

BKrev: 424aec9fwMMZcZ2_UlJ1Yvo4MO_9sQ

21 years agoSwitch to stack (rather than calloc) for tables.
osdl.net!shemminger [Wed, 30 Mar 2005 18:11:49 +0000 (18:11 +0000)] 
Switch to stack (rather than calloc) for tables.

(Logical change 1.176)

21 years agoMerge bk://bk.skbuff.net:38000/iproute2-xfrm-monitor
osdl.net!shemminger [Wed, 30 Mar 2005 18:11:49 +0000 (18:11 +0000)] 
Merge bk://bk.skbuff.net:38000/iproute2-xfrm-monitor
into dxpl.pdx.osdl.net:/home/shemminger/projects/iproute2

2005/03/29 11:00:08-08:00 osdl.net!shemminger
Switch to stack (rather than calloc) for tables.

BKrev: 424aebe59PA_FODIRzXFOT7CncQsWw

21 years agosplit printing state/policy info function for xfrm common use.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
split printing state/policy info function for xfrm common use.
add xfrm monitor.

(Logical change 1.175)

21 years agosplit printing state/policy info function for xfrm common use.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
split printing state/policy info function for xfrm common use.

(Logical change 1.175)

21 years agosplit printing policy info function for xfrm common use.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
split printing policy info function for xfrm common use.

(Logical change 1.175)

21 years agoallocspi feature support.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
allocspi feature support.
support to specify sequence number.
split printing state info function for xfrm common use.

(Logical change 1.175)

21 years agoadd xfrm_monitor.o.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
add xfrm_monitor.o.

(Logical change 1.175)

21 years ago[ip] xfrm allocspi and monitor support.
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
[ip] xfrm allocspi and monitor support.

BKrev: 42404421XVrQJoHhGCmcVVwvMghiug

21 years ago(Logical change 1.175)
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
(Logical change 1.175)

21 years agoInitial revision
linux-ipv6.org!nakam [Tue, 22 Mar 2005 16:13:21 +0000 (16:13 +0000)] 
Initial revision

21 years agoupdate snapshot id
osdl.net!shemminger [Fri, 18 Mar 2005 19:42:32 +0000 (19:42 +0000)] 
update snapshot id

(Logical change 1.174)

21 years agoSNAPSHOT.h: v2_6_11-050318
osdl.net!shemminger [Fri, 18 Mar 2005 19:42:32 +0000 (19:42 +0000)] 
SNAPSHOT.h:
  update snapshot id

BKrev: 423b2f28I7mUcVH8yK3-BDHpbJyt8A

21 years agoHandle batch mode better.
osdl.net!shemminger [Fri, 18 Mar 2005 19:40:55 +0000 (19:40 +0000)] 
Handle batch mode better.
Add comments midline and -force option.

BKrev: 423b2ec7qBteAhkVwR2g5BCthEVgUg

21 years agoHandle batch mode better.
osdl.net!shemminger [Fri, 18 Mar 2005 19:40:55 +0000 (19:40 +0000)] 
Handle batch mode better.
Add comments midline and -force option.

(Logical change 1.173)

21 years agoFix sum of first field (entries).
osdl.net!shemminger [Fri, 18 Mar 2005 19:40:19 +0000 (19:40 +0000)] 
Fix sum of first field (entries).

BKrev: 423b2ea34JrNPVTuuYtITSjfI9mwgw

21 years agoFix sum of first field (entries).
osdl.net!shemminger [Fri, 18 Mar 2005 19:40:19 +0000 (19:40 +0000)] 
Fix sum of first field (entries).

(Logical change 1.172)

21 years agoFix compile warning.
osdl.net!shemminger [Fri, 18 Mar 2005 19:40:19 +0000 (19:40 +0000)] 
Fix compile warning.

(Logical change 1.172)

21 years agoneed to sum all lines on smp machine.
osdl.net!shemminger [Wed, 16 Mar 2005 23:29:15 +0000 (23:29 +0000)] 
need to sum all lines on smp machine.

BKrev: 4238c14bzsMMWMYdGVx0U027GU4UCw

21 years agoneed to sum all lines on smp machine.
osdl.net!shemminger [Wed, 16 Mar 2005 23:29:15 +0000 (23:29 +0000)] 
need to sum all lines on smp machine.

(Logical change 1.171)

21 years agoadd credit where it is due to Jamal for ipt fix.
osdl.net!shemminger [Mon, 14 Mar 2005 22:23:38 +0000 (22:23 +0000)] 
add credit where it is due to Jamal for ipt fix.

BKrev: 42360eeaP2iqTFyMYzLM8bOpmrwvQw

21 years agoadd credit where it is due to Jamal for ipt fix.
osdl.net!shemminger [Mon, 14 Mar 2005 22:23:38 +0000 (22:23 +0000)] 
add credit where it is due to Jamal for ipt fix.

(Logical change 1.170)

21 years agoFix batch mode, allow continuation, comments, etc.
site!shemminger [Mon, 14 Mar 2005 22:19:16 +0000 (22:19 +0000)] 
Fix batch mode, allow continuation, comments, etc.

(Logical change 1.169)

21 years agoFix batch mode handle usage.
site!shemminger [Mon, 14 Mar 2005 22:19:16 +0000 (22:19 +0000)] 
Fix batch mode handle usage.

(Logical change 1.169)

21 years agoCleanup and extend batch mode.
site!shemminger [Mon, 14 Mar 2005 22:19:16 +0000 (22:19 +0000)] 
Cleanup and extend batch mode.

BKrev: 42360de4kI4C4Zc8DV7OZVrhV8WyUw

21 years agoCleanup and extend batch mode.
site!shemminger [Mon, 14 Mar 2005 22:19:16 +0000 (22:19 +0000)] 
Cleanup and extend batch mode.

(Logical change 1.169)

21 years agoupdate snapshot id
osdl.net!shemminger [Mon, 14 Mar 2005 19:39:04 +0000 (19:39 +0000)] 
update snapshot id

(Logical change 1.168)

21 years agoSNAPSHOT.h:
osdl.net!shemminger [Mon, 14 Mar 2005 19:39:04 +0000 (19:39 +0000)] 
SNAPSHOT.h:
  update snapshot id

BKrev: 4235e858dbaa11A7GcD5KvXXeghYDA

21 years agodocument changes.
osdl.net!shemminger [Mon, 14 Mar 2005 19:35:32 +0000 (19:35 +0000)] 
document changes.

(Logical change 1.167)

21 years agoChangeLog:
osdl.net!shemminger [Mon, 14 Mar 2005 19:35:32 +0000 (19:35 +0000)] 
ChangeLog:
  document changes.

BKrev: 4235e78492WfGvkk86toulp9yfoIbA

21 years agochange how netlink socket is handled for batch mode.
osdl.net!shemminger [Mon, 14 Mar 2005 19:34:12 +0000 (19:34 +0000)] 
change how netlink socket is handled for batch mode.

BKrev: 4235e734xBzJCAMH_UZH7_AseXQN5A

21 years agochange how netlink socket is handled for batch mode.
osdl.net!shemminger [Mon, 14 Mar 2005 19:34:12 +0000 (19:34 +0000)] 
change how netlink socket is handled for batch mode.

(Logical change 1.166)

21 years agofix ip_tables for user mode.
osdl.net!shemminger [Mon, 14 Mar 2005 19:33:45 +0000 (19:33 +0000)] 
fix ip_tables for user mode.

BKrev: 4235e719mjVpZtmBxWpRcesJKKGAZQ

21 years agofix ip_tables for user mode.
osdl.net!shemminger [Mon, 14 Mar 2005 19:33:45 +0000 (19:33 +0000)] 
fix ip_tables for user mode.

(Logical change 1.165)

21 years agoStyle change
osdl.net!shemminger [Mon, 14 Mar 2005 19:04:49 +0000 (19:04 +0000)] 
Style change

2005/03/10 12:26:43-08:00 net[shemminger]!shemminger
Import patch iproute-batch.1.050209.patch

(Logical change 1.164)

21 years agoGet rid of compile warning from uninitialized var.
osdl.net!shemminger [Mon, 14 Mar 2005 19:04:49 +0000 (19:04 +0000)] 
Get rid of compile warning from uninitialized var.

BKrev: 4235e051vf7DR7KnUwQduqineYxCRQ

21 years agoBatch mode comments
osdl.net!shemminger [Mon, 14 Mar 2005 19:04:15 +0000 (19:04 +0000)] 
Batch mode comments

BKrev: 4235e02fNfn7iRZhTBjU6g1rlWOLLw

21 years agoBatch mode comments
osdl.net!shemminger [Mon, 14 Mar 2005 19:04:15 +0000 (19:04 +0000)] 
Batch mode comments

(Logical change 1.163)

21 years agoTC batch mode with style cleanup.
osdl.net!shemminger [Mon, 14 Mar 2005 19:02:41 +0000 (19:02 +0000)] 
TC batch mode with style cleanup.

BKrev: 4235dfd1jdt_OqB1M7nuJ1gP8wEhJw

21 years agoStyle fix.
osdl.net!shemminger [Mon, 14 Mar 2005 19:02:41 +0000 (19:02 +0000)] 
Style fix.

2005/03/10 12:24:53-08:00 net[shemminger]!shemminger
Import patch iproute-batch.1.050209.patch

(Logical change 1.162)

21 years agoStyle fix.
osdl.net!shemminger [Mon, 14 Mar 2005 19:02:41 +0000 (19:02 +0000)] 
Style fix.

2005/03/10 12:23:54-08:00 net[shemminger]!shemminger
Import patch iproute-batch.1.050209.patch

(Logical change 1.162)

21 years agoStyle fix.
osdl.net!shemminger [Mon, 14 Mar 2005 19:02:41 +0000 (19:02 +0000)] 
Style fix.

2005/03/10 12:23:43-08:00 net[shemminger]!shemminger
Import patch iproute-batch.1.050209.patch

(Logical change 1.162)