diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-12-08 09:00:13 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-12-29 21:42:44 +0100 |
commit | ec3b71ae00bfab2fcaa31425a4f9de097389f43a (patch) | |
tree | af86df5550298e43e5491e7f2a6b757ecf765c46 /proto/bgp/bgp.h | |
parent | 7e08f5ab64aaab1c40da2ce6b54c18ce791188df (diff) | |
download | bird-ec3b71ae00bfab2fcaa31425a4f9de097389f43a.tar bird-ec3b71ae00bfab2fcaa31425a4f9de097389f43a.zip |
BGP: Add support for specifying interface names to allow peerings using link-local addresses
Diffstat (limited to 'proto/bgp/bgp.h')
-rw-r--r-- | proto/bgp/bgp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/bgp/bgp.h b/proto/bgp/bgp.h index 0c50583..76f0400 100644 --- a/proto/bgp/bgp.h +++ b/proto/bgp/bgp.h @@ -50,6 +50,7 @@ struct bgp_config { unsigned error_delay_time_min; /* Time to wait after an error is detected */ unsigned error_delay_time_max; unsigned disable_after_error; /* Disable the protocol when error is detected */ + char interface[16]; /* Interface to use */ char *password; /* Password used for MD5 authentication */ struct rtable_config *igp_table; /* Table used for recursive next hop lookups */ }; |