diff options
| author | Russ White <russ@riw.us> | 2021-07-30 06:37:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-30 06:37:50 -0400 |
| commit | e448fefbb4adf12581c002f658e03378a01b7940 (patch) | |
| tree | 897de52057295df435d9880fe047bb2f8087789b /ospf6d/ospf6d.h | |
| parent | 6430836d92dd6c695241ae9fc1ba72d69f2e6906 (diff) | |
| parent | 8a86be272fab9fc6af73a10b386e45583601fad9 (diff) | |
Merge pull request #9028 from mobash-rasool/ospfv3-asbr-summarisation
Ospfv3 ASBR summarisation feature
Diffstat (limited to 'ospf6d/ospf6d.h')
| -rw-r--r-- | ospf6d/ospf6d.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index e054803df3..5afece9b0a 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -49,6 +49,10 @@ extern struct thread_master *master; #define MSG_OK 0 #define MSG_NG 1 +#define OSPF6_SUCCESS 1 +#define OSPF6_FAILURE 0 +#define OSPF6_INVALID -1 + /* cast macro: XXX - these *must* die, ick ick. */ #define OSPF6_PROCESS(x) ((struct ospf6 *) (x)) #define OSPF6_AREA(x) ((struct ospf6_area *) (x)) |
