diff options
author | Russ White <russ@riw.us> | 2022-01-18 15:08:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 15:08:38 +0100 |
commit | 05786ac7744a6077a7f5aff9d2bfe1c92e54e17c (patch) | |
tree | 7b25f5cda483135e144e490d3e8ac970b5781d7f /ospfd/ospfd.c | |
parent | Merge pull request #10276 from patrasar/mld_northbound (diff) | |
parent | tests: check if OSPF opaque attributes are installed in the RIB (diff) | |
download | frr-05786ac7744a6077a7f5aff9d2bfe1c92e54e17c.tar.xz frr-05786ac7744a6077a7f5aff9d2bfe1c92e54e17c.zip |
Merge pull request #9644 from opensourcerouting/ospf-opaque-attrs
OSPF opaque route attributes
Diffstat (limited to 'ospfd/ospfd.c')
-rw-r--r-- | ospfd/ospfd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ospfd/ospfd.c b/ospfd/ospfd.c index e5f3eec60..726ce329e 100644 --- a/ospfd/ospfd.c +++ b/ospfd/ospfd.c @@ -406,6 +406,8 @@ struct ospf *ospf_new_alloc(unsigned short instance, const char *name) ospf_opaque_type11_lsa_init(new); + SET_FLAG(new->config, OSPF_SEND_EXTRA_DATA_TO_ZEBRA); + QOBJ_REG(new, ospf); new->fd = -1; |