summaryrefslogtreecommitdiff
path: root/lib/libagentx.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2024-05-09 07:47:29 -0400
committerDonald Sharp <sharpd@nvidia.com>2024-05-10 10:16:29 -0400
commit73ad64a6f4b039ce482ad5c3b080e8c9bb02890f (patch)
treee1db111a14838563686d207f5371fcf024edc5a7 /lib/libagentx.h
parent51119823d02847f6095725e520264c85af94b37f (diff)
*: Modify agentx to be allowed to be called
If you had a situation where an operator turned on ospfd with snmp but not ospf6d and agentx was configured then you get into a situation where ospf6d would complain that the config for agentx did not exist. Let's modify the code to allow this situation to happen. Fixes: #15896 Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/libagentx.h')
-rw-r--r--lib/libagentx.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libagentx.h b/lib/libagentx.h
new file mode 100644
index 0000000000..c3246d975f
--- /dev/null
+++ b/lib/libagentx.h
@@ -0,0 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/* SNMP cli support
+ * Copyright (C) 2024 Donald Sharp <sharpd@nvidia.com> NVIDIA Corporation
+ */
+#ifndef __LIBAGENTX_H__
+#define __LIBAGENTX_H__
+
+extern void libagentx_init(void);
+extern bool agentx_enabled;
+
+DECLARE_HOOK(agentx_cli_enabled, (), ());
+DECLARE_HOOK(agentx_cli_disabled, (), ());
+
+#endif