blob: c3246d975f14a16cd0f0134dab3797e6e6a72d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|