diff options
author | 2004-02-16 17:24:04 +0000 | |
---|---|---|
committer | 2004-02-16 17:24:04 +0000 | |
commit | b1d2d55804c6b22bd4ded440c7615a7f70aedea7 (patch) | |
tree | cf5086968514020711d45f527dc4f52322b3242e | |
parent | Remove WARN_REFERENCES incorrectly imported from NetBSD. ok miod@ (diff) | |
download | wireguard-openbsd-b1d2d55804c6b22bd4ded440c7615a7f70aedea7.tar.xz wireguard-openbsd-b1d2d55804c6b22bd4ded440c7615a7f70aedea7.zip |
add scope_id for v6 to struct bgpd_addr
ok itojun, grumbling ok claudio
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index ce0c93900fa..b43c5ec12cf 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.96 2004/02/16 14:26:29 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.97 2004/02/16 17:24:04 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -93,6 +93,7 @@ struct bgpd_addr { u_int16_t addr16[8]; u_int32_t addr32[4]; } ba; /* 128-bit address */ + u_int32_t scope_id; /* iface scope id for v6 */ #define v4 ba.v4 #define v6 ba.v6 #define addr8 ba.addr8 |