- 27 Nov, 2006 5 commits
-
-
Masahide NAKAMURA authored
Split common functions like ioctl to export them. This is a preparation to support to configure IPv6-over-IPv6 tunnel. This patch also includes minor improvemen: o to stop to include unused headers o to change function static if it is not needed to be exported Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Masahide NAKAMURA authored
Signed-off-by: TAKAMIYA Noriaki <takamiya@po.ntts.co.jp> Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Noriaki TAKAMIYA authored
Signed-off-by: TAKAMIYA Noriaki <takamiya@po.ntts.co.jp> Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Masahide NAKAMURA authored
Signed-off-by: TAKAMIYA Noriaki <takamiya@po.ntts.co.jp> Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Masahide NAKAMURA authored
Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 10 Nov, 2006 1 commit
-
-
Thomas Graf authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 09 Nov, 2006 1 commit
-
-
Thomas Graf authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 27 Oct, 2006 1 commit
-
-
Stephen Hemminger authored
Man page for rtmon.8 submitted by Michael Prokop <mika@grml.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 26 Oct, 2006 2 commits
-
-
Stephen Hemminger authored
Contributed man page from Michael Prokop <mika@grml.org> Note: changed from lnstat.1 to lnstat.8 because that is the section all the other iproute2 commands are in. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Array was not being offset correctly. See http://bugs.archlinux.org/task/5669Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 19 Oct, 2006 5 commits
-
-
Stephen Hemminger authored
Patch which allows for setting SA and SP also for new IPSec mode BEET, beside tunnel and transport, according to the latest changes in the kernel you can find at the following link: Signed-off-by: Diego Beltrami <diego.beltrami@gmail.com> Signed-off-by: Miika Komu <miika@iki.fi> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
The current genl Makefile sticks -lm and -ldl into LDFLAGS ... however, this does not create the proper link order as the implicit Makefile rules will place LDFLAGS before object files attached patch uses LDLIBS for -lm and -ldl and make's implicit rule will place them in the proper location also, i removed the -s argument to `install` as install does stripping improperly in many scenarios (such as cross-compiling) ... and in general, it's nice if the decision to strip is handled by the sysadmin -mike
-
Stephen Hemminger authored
If user asks for large usec value it could overflow 32 bits. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 02 Oct, 2006 2 commits
-
-
Stephen Hemminger authored
v2.6.18-061002
-
Stephen Hemminger authored
Add .o,.a,.so to .gitignore
-
- 26 Sep, 2006 4 commits
-
-
Stephen Hemminger authored
Prevent accidental damage from rtnl library if fd is uninitialized. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
The change to hold open the netlink socket (for ip batch mode), broke XFRM monitoring. Bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383133Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 25 Sep, 2006 1 commit
-
-
Stephen Hemminger authored
Update .gitignore
-
- 11 Aug, 2006 1 commit
-
-
Andy Gay authored
[IPROUTE]: Fix struct alignment with cris architecture gcc for the cris arch does not pad structures to the next multiple of 4 bytes, as the i386 gcc does. This causes errors like this when displaying xfrm policies: # ip x p !!!Deficit 3, rta_len=300 src 192.168.251.32/29 dst 192.168.251.32/29 dir in priority 0 !!!Deficit 3, rta_len=180 src 0.0.0.0/0 dst 192.168.251.32/29 dir in priority 2208 .... Similar errors are seen from ip x s. This patch fixes the errors when printing. I'm not sure whether we should worry about other uses of the affected structs, I've not seen any other bad effects from this though, so hopefully this is enough. (Thanks to Herbert Xu for pointing out that NLMSG_SPACE is the correct macro to use here.) Tested against 2.6.17.6 kernel on i386, and 2.6.16.1 kernel on cris. Signed-off-by: Andy Gay <andy@andynet.net> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 10 Aug, 2006 4 commits
-
-
Patrick McHardy authored
[IPROUTE]: Add support for larger number of routing tables Support support for 2^32 routing tables by using the new RTA_TABLE attribute for specifying tables > 255 and intepreting it if it is sent by the kernel. When tables > 255 are used on a kernel not supporting it an error will occur because of the unknown netlink attribute. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Patrick McHardy authored
[IPROUTE]: Use hash for routing table name cache Use a hash for routing table name cache instead of the fixed size array. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Patrick McHardy authored
[IPROUTE]: Preparation for 32 bit table IDs The route table filter uses an integer for the table number and the value -1 to represent cloned routes. For 32 bit table IDs it needs to become an unsigned, so this won't work anymore. Introduce a new filter flag "cloned" and use instead of filter.tb = -1. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Patrick McHardy authored
table from the route type. This doesn't really work anymore now that IPv6 supports multiple tables. Add detection for IPv6 multiple table support (relying on the fact that the first routes dumped belong to the local table and have rtm_table == RT_TABLE_LOCAL with multiple tables) and handle it like other protocols. Signed-off-by: Patrick McHardy <kaber@trash.net>
-
- 08 Aug, 2006 7 commits
-
-
Stephen Hemminger authored
on byteorder. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Jamal Hadi Salim authored
The controller is the only module using this at the moment. Thomas has a sample user of genetlink that would fit here; bug him for it. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Jamal Hadi Salim authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Stephen Hemminger authored
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
Jamal Hadi Salim authored
User runs "tc monitor" (without quotes) and watches events of addition, deletion and updates from qdiscs, classes, filters and actions as they happen. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
-
- 04 Aug, 2006 6 commits
-
-
Jesper Dangaard Brouer authored
- Remove the parameter "get" as it is not implemented. - Add the parameter "replace".
-
jamal authored
-
Jamal Hadi Salim authored
Stephen, Heres another on top of the others i sent. If you get the time, can update your git tree with these patches? If you are planning to make a release soon, please ping me - I have at least one more patch that i need to work on. cheers, jamal Update mirred usage to fix a bug noticed by Andy Furniss <lists@andyfurniss.entadsl.com> Also make it a little more readable.
-
Patrick McHardy authored
-
Stephen Hemminger authored
use C99 initialization to match rtnetlink.h
-
jamal authored
About two more or so to complete these.. cheers, jamal Clean up some documentation on mirred and IFB
-