diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-02-10 08:39:33 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-02-10 09:07:47 -0500 | 
| commit | 8f4ea1fc5d3f0d4c7a5209696e1dd3d5364b961e (patch) | |
| tree | dafd7f95632ff91b70c27c338c292126f45d2e76 /zebra/rib.h | |
| parent | af01a87b3d625fa88ad9c93b9ccf301e307fdcbb (diff) | |
lib, zebra: Move ZEBRA_ON_RIB_PROCESS_HOOK_CALL
The define of ZEBRA_ON_RIB_PROCESS_HOOK_CALL was in zebra.h
which exposes it to everyone, except zebra is the only daemon
to use this define.  This does not beling in zebra.h
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/rib.h')
| -rw-r--r-- | zebra/rib.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/rib.h b/zebra/rib.h index 166500fa5c..8a3b3e657f 100644 --- a/zebra/rib.h +++ b/zebra/rib.h @@ -625,6 +625,9 @@ extern pid_t pid;  extern bool v6_rr_semantics; +/* Name of hook calls */ +#define ZEBRA_ON_RIB_PROCESS_HOOK_CALL "on_rib_process_dplane_results" +  #ifdef __cplusplus  }  #endif  | 
