diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-06-14 03:23:50 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-06-14 03:23:50 +0000 |
commit | e4f956c05e25a88c810207b07499f02f7f39ee03 (patch) | |
tree | 3ca56d28e9f6b105abd94e3e88ecbde8afcce233 /usr.sbin/tcpdump/ospf.h | |
parent | 1fd8fe5e3ea48d288976fef1d6455a9cbf693b65 (diff) |
The External Route Tag for AS-External-LSAs can be an arbitrary 32bit
value and doesn't need to be an IPv4 address. It is more like a
vendor-specific field.
as discussed with claudio after looking into rfc2328
Diffstat (limited to 'usr.sbin/tcpdump/ospf.h')
-rw-r--r-- | usr.sbin/tcpdump/ospf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/ospf.h b/usr.sbin/tcpdump/ospf.h index 272901e5232..3013eb96a4f 100644 --- a/usr.sbin/tcpdump/ospf.h +++ b/usr.sbin/tcpdump/ospf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf.h,v 1.8 2000/10/03 14:31:56 ho Exp $ */ +/* $OpenBSD: ospf.h,v 1.9 2007/06/14 03:23:49 reyk Exp $ */ /* * Copyright (c) 1991, 1993, 1994, 1995, 1996, 1997 @@ -141,7 +141,7 @@ struct lsa { struct aslametric { u_int32_t asla_tosmetric; struct in_addr asla_forward; - struct in_addr asla_tag; + u_int32_t asla_tag; } asla_metric[1]; /* may repeat */ } un_asla; |