diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2008-04-23 10:55:15 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2008-04-23 10:55:15 +0000 |
commit | 8694db9f97b2d1604d2285ca01ea73760386f1bc (patch) | |
tree | 4fd89de9cf376a77bb5a6468574b4529a20130aa /sys/net/route.h | |
parent | c9d717b5186297c9c69c69b1e39f99859000ec30 (diff) |
Import MPLS (Multi Protocol Label Switching)
MPLS support partly based on the (abandoned?) AYAME project.
Basic LSR (Label Switch Router) functionality is present, but not fully
functional yet.
It is currently possible to insert entries in the LIB (Label Information Base)
with route(8), but setting the operation type is not supported yet.
Imported to allow more people to work on this in the coming weeks.
ok claudio@ laurent@ dlg@
Diffstat (limited to 'sys/net/route.h')
-rw-r--r-- | sys/net/route.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/route.h b/sys/net/route.h index ab82113c816..83e156d09d4 100644 --- a/sys/net/route.h +++ b/sys/net/route.h @@ -1,4 +1,4 @@ -/* $OpenBSD: route.h,v 1.47 2007/09/03 15:24:49 claudio Exp $ */ +/* $OpenBSD: route.h,v 1.48 2008/04/23 10:55:14 norby Exp $ */ /* $NetBSD: route.h,v 1.9 1996/02/13 22:00:49 christos Exp $ */ /* @@ -290,6 +290,7 @@ struct rt_addrinfo { struct route_cb { int ip_count; int ip6_count; + int mpls_count; int any_count; }; |