snmp_agent.h
Go to the documentation of this file.
1 /**
2  * @file snmp_agent.h
3  * @brief SNMP agent (Simple Network Management Protocol)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2023 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.2.4
29  **/
30 
31 #ifndef _SNMP_AGENT_H
32 #define _SNMP_AGENT_H
33 
34 //Forward declaration of SnmpAgentContext structure
35 struct _SnmpAgentContext;
36 #define SnmpAgentContext struct _SnmpAgentContext
37 
38 //Dependencies
39 #include "core/net.h"
40 #include "snmp/snmp_common.h"
42 #include "snmp/snmp_agent_trap.h"
43 #include "snmp/snmp_agent_inform.h"
44 #include "snmp/snmp_agent_usm.h"
45 #include "snmp/snmp_agent_vacm.h"
46 #include "mibs/mib_common.h"
47 
48 //SNMP agent support
49 #ifndef SNMP_AGENT_SUPPORT
50  #define SNMP_AGENT_SUPPORT DISABLED
51 #elif (SNMP_AGENT_SUPPORT != ENABLED && SNMP_AGENT_SUPPORT != DISABLED)
52  #error SNMP_AGENT_SUPPORT parameter is not valid
53 #endif
54 
55 //Stack size required to run the SNMP agent
56 #ifndef SNMP_AGENT_STACK_SIZE
57  #define SNMP_AGENT_STACK_SIZE 550
58 #elif (SNMP_AGENT_STACK_SIZE < 1)
59  #error SNMP_AGENT_STACK_SIZE parameter is not valid
60 #endif
61 
62 //Priority at which the SNMP agent should run
63 #ifndef SNMP_AGENT_PRIORITY
64  #define SNMP_AGENT_PRIORITY OS_TASK_PRIORITY_NORMAL
65 #endif
66 
67 //Maximum number of MIBs
68 #ifndef SNMP_AGENT_MAX_MIBS
69  #define SNMP_AGENT_MAX_MIBS 8
70 #elif (SNMP_AGENT_MAX_MIBS < 1)
71  #error SNMP_AGENT_MAX_MIBS parameter is not valid
72 #endif
73 
74 //Maximum number of community strings
75 #ifndef SNMP_AGENT_MAX_COMMUNITIES
76  #define SNMP_AGENT_MAX_COMMUNITIES 3
77 #elif (SNMP_AGENT_MAX_COMMUNITIES < 1)
78  #error SNMP_AGENT_MAX_COMMUNITIES parameter is not valid
79 #endif
80 
81 //Maximum number of users
82 #ifndef SNMP_AGENT_MAX_USERS
83  #define SNMP_AGENT_MAX_USERS 8
84 #elif (SNMP_AGENT_MAX_USERS < 1)
85  #error SNMP_AGENT_MAX_USERS parameter is not valid
86 #endif
87 
88 //Size of the group table
89 #ifndef SNMP_AGENT_GROUP_TABLE_SIZE
90  #define SNMP_AGENT_GROUP_TABLE_SIZE 8
91 #elif (SNMP_AGENT_GROUP_TABLE_SIZE < 1)
92  #error SNMP_AGENT_GROUP_TABLE_SIZE parameter is not valid
93 #endif
94 
95 //Size of the access table
96 #ifndef SNMP_AGENT_ACCESS_TABLE_SIZE
97  #define SNMP_AGENT_ACCESS_TABLE_SIZE 8
98 #elif (SNMP_AGENT_ACCESS_TABLE_SIZE < 1)
99  #error SNMP_AGENT_ACCESS_TABLE_SIZE parameter is not valid
100 #endif
101 
102 //Size of the view table
103 #ifndef SNMP_AGENT_VIEW_TABLE_SIZE
104  #define SNMP_AGENT_VIEW_TABLE_SIZE 8
105 #elif (SNMP_AGENT_VIEW_TABLE_SIZE < 1)
106  #error SNMP_AGENT_VIEW_TABLE_SIZE parameter is not valid
107 #endif
108 
109 //Application specific context
110 #ifndef SNMP_AGENT_PRIVATE_CONTEXT
111  #define SNMP_AGENT_PRIVATE_CONTEXT
112 #endif
113 
114 //C++ guard
115 #ifdef __cplusplus
116 extern "C" {
117 #endif
118 
119 
120 /**
121  * @brief Random data generation callback function
122  **/
123 
124 typedef error_t (*SnmpAgentRandCallback)(uint8_t *data, size_t length);
125 
126 
127 /**
128  * @brief SNMP agent settings
129  **/
130 
131 typedef struct
132 {
133  NetInterface *interface; ///<Network interface to configure
134  SnmpVersion versionMin; ///<Minimum version accepted by the SNMP agent
135  SnmpVersion versionMax; ///<Maximum version accepted by the SNMP agent
136  uint16_t port; ///<SNMP port number
137  uint16_t trapPort; ///<SNMP trap port number
138  SnmpAgentRandCallback randCallback; ///<Random data generation callback function
140 
141 
142 /**
143  * @brief SNMP agent context
144  **/
145 
147 {
148  SnmpAgentSettings settings; ///<SNMP agent settings
149  bool_t running; ///<Operational state of the SNMP agent
150  bool_t stop; ///<Stop request
151  OsMutex mutex; ///<Mutex preventing simultaneous access to SNMP agent context
152  OsEvent event; ///<Event object used to poll the underlying socket
153  OsTaskId taskId; ///<Task identifier
154 #if (OS_STATIC_TASK_SUPPORT == ENABLED)
155  OsTaskTcb taskTcb; ///<Task control block
157 #endif
158  uint8_t enterpriseOid[SNMP_MAX_OID_SIZE]; ///<Enterprise OID
159  size_t enterpriseOidLen; ///<Length of the enterprise OID
160  const MibModule *mibTable[SNMP_AGENT_MAX_MIBS]; ///<MIB modules
161 #if (SNMP_V1_SUPPORT == ENABLED || SNMP_V2C_SUPPORT == ENABLED)
163 #endif
164 #if (SNMP_V3_SUPPORT == ENABLED)
166 #endif
167 #if (SNMP_AGENT_VACM_SUPPORT == ENABLED)
170  SnmpViewEntry viewTable[SNMP_AGENT_VIEW_TABLE_SIZE]; ///<Families of subtrees within MIB views
171 #endif
172  Socket *socket; ///<Underlying socket
173  NetInterface *localInterface; ///<Network interface the SNMP request was received on
174  IpAddr localIpAddr; ///<Destination IP address of the received SNMP request
175  IpAddr remoteIpAddr; ///<Source IP address of the received SNMP request
176  uint16_t remotePort; ///<Source port of the received SNMP request
177  int32_t requestId; ///<Request identifier
178  SnmpMessage request; ///<SNMP request message
179  SnmpMessage response; ///<SNMP response message
180  SnmpUserEntry user; ///<Security profile of current user
181 #if (SNMP_V3_SUPPORT == ENABLED)
182  uint8_t contextEngine[SNMP_MAX_CONTEXT_ENGINE_SIZE]; ///<Context engine identifier
183  size_t contextEngineLen; ///<Length of the context engine identifier
185  systime_t systemTime; ///<System time
186  int32_t engineBoots; ///<Number of times that the SNMP engine has rebooted
187  int32_t engineTime; ///<SNMP engine time
188  int32_t msgId; ///<Message identifier
189  uint64_t salt; ///<Integer initialized to a random value at boot time
190  uint8_t privParameters[8]; ///<Privacy parameters
191 #endif
192 #if (SNMP_AGENT_INFORM_SUPPORT == ENABLED)
193  SnmpAgentState informState; ///<State of the inform sending process
194  int32_t informRequestId; ///<Inform request identifier
195  systime_t informTimestamp; ///<Timestamp to manage retransmissions
196  uint_t informRetransmitCount; ///<Retransmission counter
197  OsEvent informEvent; ///<Event object
198 #if (SNMP_V3_SUPPORT == ENABLED)
199  uint8_t informContextEngine[SNMP_MAX_CONTEXT_ENGINE_SIZE]; ///<Context engine identifier of the remote application
200  size_t informContextEngineLen; ///<Length of the context engine identifier
201  int32_t informEngineBoots; ///<Number of times that the remote SNMP engine has rebooted
202  int32_t informEngineTime; ///<SNMP engine time of the remote application
203  int32_t informMsgId; ///<Message identifier
204 #endif
205 #endif
206  SNMP_AGENT_PRIVATE_CONTEXT ///<Application specific context
207 };
208 
209 
210 //SNMP agent related functions
212 
214  const SnmpAgentSettings *settings);
215 
218 
219 error_t snmpAgentLoadMib(SnmpAgentContext *context, const MibModule *module);
220 error_t snmpAgentUnloadMib(SnmpAgentContext *context, const MibModule *module);
221 
223  SnmpVersion versionMin, SnmpVersion versionMax);
224 
225 error_t snmpAgentSetEngineBoots(SnmpAgentContext *context, int32_t engineBoots);
226 error_t snmpAgentGetEngineBoots(SnmpAgentContext *context, int32_t *engineBoots);
227 
229  const uint8_t *enterpriseOid, size_t enterpriseOidLen);
230 
232  const void *contextEngine, size_t contextEngineLen);
233 
235  const char_t *contextName);
236 
238  const char_t *community, SnmpAccess mode);
239 
241  const char_t *community);
242 
244  const char_t *userName, SnmpAccess mode, SnmpKeyFormat keyFormat,
245  SnmpAuthProtocol authProtocol, const void *authKey,
246  SnmpPrivProtocol privProtocol, const void *privKey);
247 
248 error_t snmpAgentDeleteUser(SnmpAgentContext *context, const char_t *userName);
249 
250 error_t snmpAgentJoinGroup(SnmpAgentContext *context, const char_t *userName,
251  SnmpSecurityModel securityModel, const char_t *groupName);
252 
254  const char_t *userName, SnmpSecurityModel securityModel);
255 
257  const char_t *groupName, SnmpSecurityModel securityModel,
258  SnmpSecurityLevel securityLevel, const char_t *contextPrefix,
259  SnmpContextMatch contextMatch, const char_t *readViewName,
260  const char_t *writeViewName, const char_t *notifyViewName);
261 
263  const char_t *groupName, SnmpSecurityModel securityModel,
264  SnmpSecurityLevel securityLevel, const char_t *contextPrefix);
265 
267  const char_t *viewName, const uint8_t *subtree, size_t subtreeLen,
268  const uint8_t *mask, size_t maskLen, SnmpViewType type);
269 
271  const char_t *viewName, const uint8_t *subtree, size_t subtreeLen);
272 
274  const IpAddr *destIpAddr, SnmpVersion version, const char_t *userName,
275  uint_t genericTrapType, uint_t specificTrapCode,
276  const SnmpTrapObject *objectList, uint_t objectListSize);
277 
279  const IpAddr *destIpAddr, SnmpVersion version, const char_t *userName,
280  uint_t genericTrapType, uint_t specificTrapCode,
281  const SnmpTrapObject *objectList, uint_t objectListSize);
282 
283 void snmpAgentTask(SnmpAgentContext *context);
284 
285 void snmpAgentDeinit(SnmpAgentContext *context);
286 
287 //C++ guard
288 #ifdef __cplusplus
289 }
290 #endif
291 
292 #endif
Definitions common to SNMP agent and SNMP manager.
uint8_t length
Definition: coap_common.h:193
error_t snmpAgentDeleteView(SnmpAgentContext *context, const char_t *viewName, const uint8_t *subtree, size_t subtreeLen)
Delete an existing MIB view.
Definition: snmp_agent.c:1527
SnmpVersion versionMax
Maximum version accepted by the SNMP agent.
Definition: snmp_agent.h:135
int32_t informRequestId
Inform request identifier.
Definition: snmp_agent.h:194
IpAddr localIpAddr
Destination IP address of the received SNMP request.
Definition: snmp_agent.h:174
int bool_t
Definition: compiler_port.h:53
int32_t informMsgId
Message identifier.
Definition: snmp_agent.h:203
error_t(* SnmpAgentRandCallback)(uint8_t *data, size_t length)
Random data generation callback function.
Definition: snmp_agent.h:124
systime_t informTimestamp
Timestamp to manage retransmissions.
Definition: snmp_agent.h:195
uint8_t data[]
Definition: ethernet.h:220
IP network address.
Definition: ip.h:79
SnmpSecurityModel
Security models.
SnmpUserEntry user
Security profile of current user.
Definition: snmp_agent.h:180
OsTaskId taskId
Task identifier.
Definition: snmp_agent.h:153
size_t contextEngineLen
Length of the context engine identifier.
Definition: snmp_agent.h:183
SnmpAgentState informState
State of the inform sending process.
Definition: snmp_agent.h:193
#define SNMP_AGENT_MAX_USERS
Definition: snmp_agent.h:83
error_t snmpAgentDeleteUser(SnmpAgentContext *context, const char_t *userName)
Remove existing user.
Definition: snmp_agent.c:1022
SnmpContextMatch
Context match.
Event object.
SnmpKeyFormat
SNMP key format.
int32_t informEngineTime
SNMP engine time of the remote application.
Definition: snmp_agent.h:202
IpAddr remoteIpAddr
Source IP address of the received SNMP request.
Definition: snmp_agent.h:175
Object descriptor for trap notifications.
systime_t systemTime
System time.
Definition: snmp_agent.h:185
error_t snmpAgentLoadMib(SnmpAgentContext *context, const MibModule *module)
Load a MIB module.
Definition: snmp_agent.c:346
#define SNMP_AGENT_VIEW_TABLE_SIZE
Definition: snmp_agent.h:104
error_t snmpAgentCreateUser(SnmpAgentContext *context, const char_t *userName, SnmpAccess mode, SnmpKeyFormat keyFormat, SnmpAuthProtocol authProtocol, const void *authKey, SnmpPrivProtocol privProtocol, const void *privKey)
Create a new user.
Definition: snmp_agent.c:824
NetInterface * localInterface
Network interface the SNMP request was received on.
Definition: snmp_agent.h:173
#define SNMP_AGENT_MAX_MIBS
Definition: snmp_agent.h:69
SNMP trap notifications.
uint8_t version
Definition: coap_common.h:175
SnmpGroupEntry groupTable[SNMP_AGENT_GROUP_TABLE_SIZE]
List of groups.
Definition: snmp_agent.h:168
error_t snmpAgentSetVersion(SnmpAgentContext *context, SnmpVersion versionMin, SnmpVersion versionMax)
Set minimum and maximum versions permitted.
Definition: snmp_agent.c:480
User table entry.
SnmpAccessEntry accessTable[SNMP_AGENT_ACCESS_TABLE_SIZE]
Access rights for groups.
Definition: snmp_agent.h:169
error_t snmpAgentSetContextName(SnmpAgentContext *context, const char_t *contextName)
Set context name.
Definition: snmp_agent.c:651
SnmpViewType
View type.
uint8_t informContextEngine[SNMP_MAX_CONTEXT_ENGINE_SIZE]
Context engine identifier of the remote application.
Definition: snmp_agent.h:199
error_t snmpAgentStart(SnmpAgentContext *context)
Start SNMP agent.
Definition: snmp_agent.c:211
#define SNMP_AGENT_ACCESS_TABLE_SIZE
Definition: snmp_agent.h:97
SnmpVersion
SNMP version identifiers.
Definition: snmp_common.h:137
error_t snmpAgentLeaveGroup(SnmpAgentContext *context, const char_t *userName, SnmpSecurityModel securityModel)
Leave a group of users.
Definition: snmp_agent.c:1169
uint16_t trapPort
SNMP trap port number.
Definition: snmp_agent.h:137
OsEvent event
Event object used to poll the underlying socket.
Definition: snmp_agent.h:152
#define SNMP_MAX_CONTEXT_NAME_LEN
Definition: snmp_common.h:74
uint64_t salt
Integer initialized to a random value at boot time.
Definition: snmp_agent.h:189
size_t informContextEngineLen
Length of the context engine identifier.
Definition: snmp_agent.h:200
SnmpAgentSettings settings
SNMP agent settings.
Definition: snmp_agent.h:148
error_t snmpAgentDeleteAccess(SnmpAgentContext *context, const char_t *groupName, SnmpSecurityModel securityModel, SnmpSecurityLevel securityLevel, const char_t *contextPrefix)
Delete an existing access policy.
Definition: snmp_agent.c:1365
SNMP inform notifications.
uint_t informRetransmitCount
Retransmission counter.
Definition: snmp_agent.h:196
char_t type
error_t
Error codes.
Definition: error.h:43
SNMP agent context.
Definition: snmp_agent.h:147
uint16_t remotePort
Source port of the received SNMP request.
Definition: snmp_agent.h:176
void snmpAgentGetDefaultSettings(SnmpAgentSettings *settings)
Initialize settings with default values.
Definition: snmp_agent.c:73
const MibModule * mibTable[SNMP_AGENT_MAX_MIBS]
MIB modules.
Definition: snmp_agent.h:160
void snmpAgentTask(SnmpAgentContext *context)
SNMP agent task.
Definition: snmp_agent.c:1942
SnmpPrivProtocol
Task control block.
char_t contextName[SNMP_MAX_CONTEXT_NAME_LEN+1]
Context name.
Definition: snmp_agent.h:184
size_t enterpriseOidLen
Length of the enterprise OID.
Definition: snmp_agent.h:159
int32_t engineBoots
Number of times that the SNMP engine has rebooted.
Definition: snmp_agent.h:186
#define NetInterface
Definition: net.h:36
SnmpUserEntry userTable[SNMP_AGENT_MAX_USERS]
List of users.
Definition: snmp_agent.h:165
error_t snmpAgentJoinGroup(SnmpAgentContext *context, const char_t *userName, SnmpSecurityModel securityModel, const char_t *groupName)
Join a group of users.
Definition: snmp_agent.c:1076
#define SNMP_MAX_OID_SIZE
Definition: snmp_common.h:116
uint32_t OsStackType
Stack data type.
SnmpAgentState
State of the inform sending process.
uint8_t privParameters[8]
Privacy parameters.
Definition: snmp_agent.h:190
uint8_t mask
Definition: web_socket.h:317
error_t snmpAgentSetContextEngine(SnmpAgentContext *context, const void *contextEngine, size_t contextEngineLen)
Set context engine identifier.
Definition: snmp_agent.c:614
#define SNMP_AGENT_MAX_COMMUNITIES
Definition: snmp_agent.h:76
error_t snmpAgentCreateCommunity(SnmpAgentContext *context, const char_t *community, SnmpAccess mode)
Create a new community string.
Definition: snmp_agent.c:692
int32_t requestId
Request identifier.
Definition: snmp_agent.h:177
int32_t msgId
Message identifier.
Definition: snmp_agent.h:188
MIB module.
Definition: mib_common.h:288
View-based Access Control Model (VACM) for SNMP.
#define SNMP_AGENT_STACK_SIZE
Definition: snmp_agent.h:57
Mutex object.
uint32_t systime_t
System time.
Socket * socket
Underlying socket.
Definition: snmp_agent.h:172
char char_t
Definition: compiler_port.h:48
Ipv6Addr contextPrefix
Definition: ndp.h:517
uint16_t port
SNMP port number.
Definition: snmp_agent.h:136
OsMutex mutex
Mutex preventing simultaneous access to SNMP agent context.
Definition: snmp_agent.h:151
error_t snmpAgentSendTrap(SnmpAgentContext *context, const IpAddr *destIpAddr, SnmpVersion version, const char_t *userName, uint_t genericTrapType, uint_t specificTrapCode, const SnmpTrapObject *objectList, uint_t objectListSize)
Send SNMP trap notification.
Definition: snmp_agent.c:1586
bool_t stop
Stop request.
Definition: snmp_agent.h:150
SnmpAgentRandCallback randCallback
Random data generation callback function.
Definition: snmp_agent.h:138
error_t snmpAgentUnloadMib(SnmpAgentContext *context, const MibModule *module)
Unload a MIB module.
Definition: snmp_agent.c:422
SnmpUserEntry communityTable[SNMP_AGENT_MAX_COMMUNITIES]
Community strings.
Definition: snmp_agent.h:162
OsEvent informEvent
Event object.
Definition: snmp_agent.h:197
error_t snmpAgentInit(SnmpAgentContext *context, const SnmpAgentSettings *settings)
SNMP agent initialization.
Definition: snmp_agent.c:100
error_t snmpAgentSetEngineBoots(SnmpAgentContext *context, int32_t engineBoots)
Set the value of the snmpEngineBoots variable.
Definition: snmp_agent.c:511
Common definitions for MIB modules.
int32_t informEngineBoots
Number of times that the remote SNMP engine has rebooted.
Definition: snmp_agent.h:201
error_t snmpAgentCreateView(SnmpAgentContext *context, const char_t *viewName, const uint8_t *subtree, size_t subtreeLen, const uint8_t *mask, size_t maskLen, SnmpViewType type)
Create a new MIB view.
Definition: snmp_agent.c:1425
OsTaskTcb taskTcb
Task control block.
Definition: snmp_agent.h:155
NetInterface * interface
Network interface to configure.
Definition: snmp_agent.h:133
View table entry.
error_t snmpAgentCreateAccess(SnmpAgentContext *context, const char_t *groupName, SnmpSecurityModel securityModel, SnmpSecurityLevel securityLevel, const char_t *contextPrefix, SnmpContextMatch contextMatch, const char_t *readViewName, const char_t *writeViewName, const char_t *notifyViewName)
Create access policy for the specified group name.
Definition: snmp_agent.c:1230
uint8_t contextEngine[SNMP_MAX_CONTEXT_ENGINE_SIZE]
Context engine identifier.
Definition: snmp_agent.h:182
#define Socket
Definition: socket.h:36
Access table entry.
SnmpVersion versionMin
Minimum version accepted by the SNMP agent.
Definition: snmp_agent.h:134
void snmpAgentDeinit(SnmpAgentContext *context)
Release SNMP agent context.
Definition: snmp_agent.c:2071
error_t snmpAgentGetEngineBoots(SnmpAgentContext *context, int32_t *engineBoots)
Get the value of the snmpEngineBoots variable.
Definition: snmp_agent.c:550
SnmpMessage response
SNMP response message.
Definition: snmp_agent.h:179
error_t snmpAgentDeleteCommunity(SnmpAgentContext *context, const char_t *community)
Remove a community string.
Definition: snmp_agent.c:766
SnmpAuthProtocol
SNMP message.
bool_t running
Operational state of the SNMP agent.
Definition: snmp_agent.h:149
#define SNMP_MAX_CONTEXT_ENGINE_SIZE
Definition: snmp_common.h:67
#define SnmpAgentContext
Definition: snmp_agent.h:36
SnmpMessage request
SNMP request message.
Definition: snmp_agent.h:178
uint8_t mode
Definition: ntp_common.h:149
SnmpSecurityLevel
Security levels.
error_t snmpAgentSetEnterpriseOid(SnmpAgentContext *context, const uint8_t *enterpriseOid, size_t enterpriseOidLen)
Set enterprise OID.
Definition: snmp_agent.c:581
int32_t engineTime
SNMP engine time.
Definition: snmp_agent.h:187
thread_t * OsTaskId
Task identifier.
Group table entry.
SnmpViewEntry viewTable[SNMP_AGENT_VIEW_TABLE_SIZE]
Families of subtrees within MIB views.
Definition: snmp_agent.h:170
unsigned int uint_t
Definition: compiler_port.h:50
OsStackType taskStack[SNMP_AGENT_STACK_SIZE]
Task stack.
Definition: snmp_agent.h:156
TCP/IP stack core.
SNMP agent settings.
Definition: snmp_agent.h:132
error_t snmpAgentStop(SnmpAgentContext *context)
Stop SNMP agent.
Definition: snmp_agent.c:306
SnmpAccess
Access modes.
error_t snmpAgentSendInform(SnmpAgentContext *context, const IpAddr *destIpAddr, SnmpVersion version, const char_t *userName, uint_t genericTrapType, uint_t specificTrapCode, const SnmpTrapObject *objectList, uint_t objectListSize)
Send SNMP inform request.
Definition: snmp_agent.c:1662
uint8_t enterpriseOid[SNMP_MAX_OID_SIZE]
Enterprise OID.
Definition: snmp_agent.h:158
#define SNMP_AGENT_GROUP_TABLE_SIZE
Definition: snmp_agent.h:90
User-based Security Model (USM) for SNMPv3.
#define SNMP_AGENT_PRIVATE_CONTEXT
Definition: snmp_agent.h:111
Ipv4Addr destIpAddr
Definition: ipcp.h:78