diff options
author | Donald Sharp <sharpd@nvidia.com> | 2024-01-04 20:02:34 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2024-01-04 20:02:34 +0100 |
commit | 2bf051a5770c22c61220c7f169432c93c0da612a (patch) | |
tree | d820dedac54e8c79f1edfaf1dc5f9bb8ba10f441 /ospf6d/ospf6_auth_trailer.c | |
parent | lib: Breakout sendmmsg into it's own header (diff) | |
download | frr-2bf051a5770c22c61220c7f169432c93c0da612a.tar.xz frr-2bf051a5770c22c61220c7f169432c93c0da612a.zip |
*: Remove Crypto openSSL define from zebra.h
Only a couple of places use this. Move these to a better
spot.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospf6d/ospf6_auth_trailer.c')
-rw-r--r-- | ospf6d/ospf6_auth_trailer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ospf6d/ospf6_auth_trailer.c b/ospf6d/ospf6_auth_trailer.c index 10e00921f..82671eef7 100644 --- a/ospf6d/ospf6_auth_trailer.c +++ b/ospf6d/ospf6_auth_trailer.c @@ -4,6 +4,12 @@ */ #include "zebra.h" + +#ifdef CRYPTO_OPENSSL +#include <openssl/evp.h> +#include <openssl/hmac.h> +#endif + #include "config.h" #include "memory.h" #include "ospf6d.h" |