diff options
| author | Amol Lad <amol.lad@4rf.com> | 2021-02-17 13:51:52 +1300 |
|---|---|---|
| committer | Reuben Dowle <reuben.dowle@4rf.com> | 2021-04-06 09:22:59 +1200 |
| commit | bc97889b393288cc950f4cc8fd5f175c45b398ed (patch) | |
| tree | d5278bd1d9cf9f0903310299c11012a604bd38ed /ospfd/ospf_interface.h | |
| parent | 0da7701aa2da8ff638f4271b982432411fbd9392 (diff) | |
ospfd: Support use of ospf with DMVPN
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com>
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; |
