summaryrefslogtreecommitdiff
path: root/include/net-snmp/agent/serialize.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net-snmp/agent/serialize.h')
-rw-r--r--include/net-snmp/agent/serialize.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/net-snmp/agent/serialize.h b/include/net-snmp/agent/serialize.h
new file mode 100644
index 0000000..08b38c1
--- /dev/null
+++ b/include/net-snmp/agent/serialize.h
@@ -0,0 +1,24 @@
+#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