net-snmp 5.7
null.h
00001 #ifndef AGENT_NULL_H
00002 #define AGENT_NULL_H
00003 
00004 #ifdef __cplusplus
00005 extern          "C" {
00006 #endif
00007 
00008 /*
00009  * null.h 
00010  */
00011 
00012 /*
00013  * literally does nothing and is used as a final handler for
00014  * "do-nothing" nodes that must exist solely for mib tree storage
00015  * usage..
00016  */
00017 
00018 int      netsnmp_register_null(oid *, size_t);
00019 int      netsnmp_register_null_context(oid *, size_t, const char *contextName);
00020 
00021 Netsnmp_Node_Handler netsnmp_null_handler;
00022 
00023 #ifdef __cplusplus
00024 }
00025 #endif
00026 #endif