and added files
[bcm963xx.git] / userapps / opensource / net-snmp / man / netsnmp_serialize.3
1 .TH "serialize: Calls sub handlers one request at a time." 3 "10 Jan 2003" "net-snmp" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 serialize: Calls sub handlers one request at a time. \- This functionally passes in one request at a time into lower handlers rather than a whole bunch of requests at once. 
6 More...
7 .SS "Functions"
8
9 .in +1c
10 .ti -1c
11 .RI "netsnmp_mib_handler * \fBnetsnmp_get_serialize_handler\fP (void)"
12 .br
13 .RI "\fIreturns a serialize handler that can be injected into a given handler chain.\fP"
14 .ti -1c
15 .RI "int \fBnetsnmp_register_serialize\fP (netsnmp_handler_registration *reginfo)"
16 .br
17 .RI "\fIfunctionally the same as calling \fBnetsnmp_register_handler\fP() but also injects a serialize handler at the same time for you.\fP"
18 .ti -1c
19 .RI "int \fBnetsnmp_serialize_helper_handler\fP (netsnmp_mib_handler *handler, netsnmp_handler_registration *reginfo, netsnmp_agent_request_info *reqinfo, netsnmp_request_info *requests)"
20 .br
21 .RI "\fIImplements the serial handler.\fP"
22 .ti -1c
23 .RI "void \fBnetsnmp_init_serialize\fP (void)"
24 .br
25 .RI "\fIinitializes the serialize helper which then registers a serialize handler as a run-time injectable handler for configuration file use.\fP"
26 .in -1c
27 .SH "DETAILED DESCRIPTION"
28 .PP 
29 This functionally passes in one request at a time into lower handlers rather than a whole bunch of requests at once.
30 .PP
31 This is useful for handlers that don't want to iterate through the request lists themselves. Generally, this is probably less efficient so use with caution. The serialize handler might be useable to dynamically fix handlers with broken looping code, however. 
32 .SH "FUNCTION DOCUMENTATION"
33 .PP 
34 .SS "netsnmp_mib_handler* netsnmp_get_serialize_handler (void)"
35 .PP
36 returns a serialize handler that can be injected into a given handler chain.
37 .PP
38 Definition at line 34 of file serialize.c.
39 .SS "void netsnmp_init_serialize (void)"
40 .PP
41 initializes the serialize helper which then registers a serialize handler as a run-time injectable handler for configuration file use.
42 .PP
43 Definition at line 96 of file serialize.c.
44 .SS "int netsnmp_register_serialize (netsnmp_handler_registration * reginfo)"
45 .PP
46 functionally the same as calling \fBnetsnmp_register_handler\fP() but also injects a serialize handler at the same time for you.
47 .PP
48 Definition at line 43 of file serialize.c.
49 .SS "int netsnmp_serialize_helper_handler (netsnmp_mib_handler * handler, netsnmp_handler_registration * reginfo, netsnmp_agent_request_info * reqinfo, netsnmp_request_info * requests)"
50 .PP
51 Implements the serial handler.
52 .PP
53 Definition at line 51 of file serialize.c.