diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2021-04-13 12:49:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-13 12:49:28 -0500 |
| commit | d75213d26036a2880f23f5e67cb1c890f20299de (patch) | |
| tree | 704214848af1d599fa2b945c0f7e311a9923f6e6 /ospfd/ospf_interface.h | |
| parent | 0ae24ff56611e9151e0c061910ad34fee9fac53b (diff) | |
| parent | 46d3c1859ba622547529cd917c3853c71ee919fe (diff) | |
Merge pull request #8153 from reubendowle/nhrp-multicast
nhrp, ospf: add nhrp multicast for OSPF DMVPN
Diffstat (limited to 'ospfd/ospf_interface.h')
| -rw-r--r-- | ospfd/ospf_interface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ospfd/ospf_interface.h b/ospfd/ospf_interface.h index e2d7327381..4a21147246 100644 --- a/ospfd/ospf_interface.h +++ b/ospfd/ospf_interface.h @@ -118,6 +118,9 @@ struct ospf_if_params { /* MPLS LDP-IGP Sync configuration */ struct ldp_sync_info *ldp_sync_info; + + /* point-to-point DMVPN configuration */ + uint8_t ptp_dmvpn; }; enum { MEMBER_ALLROUTERS = 0, @@ -180,6 +183,9 @@ struct ospf_interface { /* OSPF Network Type. */ uint8_t type; + /* point-to-point DMVPN configuration */ + uint8_t ptp_dmvpn; + /* State of Interface State Machine. */ uint8_t state; |
