diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-02-26 16:47:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-26 16:47:08 +0100 |
| commit | fe972cbfd4973e1156f317c2425af8199892a01b (patch) | |
| tree | 5bfe1c405cc23a7d0a927902de4680f88884077e /zebra/interface.h | |
| parent | d28acb1d0ec7946b55bf57de2467728054725e33 (diff) | |
| parent | cd787a8a45ea3c94a689d5ff01ddf62467373550 (diff) | |
Merge pull request #9947 from mjstapp/mpls_incoming
Diffstat (limited to 'zebra/interface.h')
| -rw-r--r-- | zebra/interface.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/interface.h b/zebra/interface.h index 413a67469a..85617961af 100644 --- a/zebra/interface.h +++ b/zebra/interface.h @@ -329,6 +329,9 @@ struct zebra_if { /* Multicast configuration. */ uint8_t multicast; + /* MPLS status. */ + bool mpls; + /* Router advertise configuration. */ uint8_t rtadv_enable; @@ -520,6 +523,7 @@ extern void zebra_l2_unmap_slave_from_bond(struct zebra_if *zif); extern const char *zebra_protodown_rc_str(enum protodown_reasons protodown_rc, char *pd_buf, uint32_t pd_buf_len); void zebra_if_addr_update_ctx(struct zebra_dplane_ctx *ctx); +int zebra_if_netconf_update_ctx(struct zebra_dplane_ctx *ctx); #ifdef HAVE_PROC_NET_DEV extern void ifstat_update_proc(void); |
