system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
#ifndef SERIALIZE_H
#define SERIALIZE_H
/*
* The serialized helper merely calls its clients multiple times for a
* * given request set, so they don't have to loop through the requests
* * themselves.
*/
#ifdef __cplusplus
extern "C" {
#endif
netsnmp_mib_handler *netsnmp_get_serialize_handler(void);
int netsnmp_register_serialize(netsnmp_handler_registration
*reginfo);
void netsnmp_init_serialize(void);
Netsnmp_Node_Handler netsnmp_serialize_helper_handler;
#ifdef __cplusplus
}
#endif
#endif