diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-02-19 12:02:39 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-02-19 12:02:39 +0100 |
commit | 4e379bde60172823452cf96e9c0b6b1737c490f0 (patch) | |
tree | 097d94eaacbe675817d968301fec63a6972577f3 /proto/bgp/packets.c | |
parent | 9be12a7d95d668a64922f935057c0b401b58ab75 (diff) |
BGP: Update RFC references
Diffstat (limited to 'proto/bgp/packets.c')
-rw-r--r-- | proto/bgp/packets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c index 3e816839..d100b7d0 100644 --- a/proto/bgp/packets.c +++ b/proto/bgp/packets.c @@ -856,7 +856,7 @@ bgp_parse_capabilities(struct bgp_conn *conn, byte *opt, int len) conn->advertised_as = get_u32(opt + 2); break; - case 69: /* ADD-PATH capability, draft */ + case 69: /* ADD-PATH capability, RFC 7911 */ if (cl % 4) goto err; for (i = 0; i < cl; i += 4) |