~ubuntu-branches/ubuntu/intrepid/net-snmp/intrepid-updates

« back to all changes in this revision

Viewing changes to agent/helpers/bulk_to_next.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2006-11-28 12:29:34 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061128122934-82xxzy2zcvypnvy7
Tags: 5.2.3-4ubuntu1
* Merge from debian unstable, remaining changes:
  - remove stop links from rc0 and rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#include <dmalloc.h>
16
16
#endif
17
17
 
18
 
/** @defgroup bulk_to_next bulk_to_next: convert GETBULK requests into GETNEXT requests for the handler.
 
18
/** @defgroup bulk_to_next bulk_to_next
 
19
 *  Convert GETBULK requests into GETNEXT requests for the handler.
19
20
 *  The only purpose of this handler is to convert a GETBULK request
20
21
 *  to a GETNEXT request.  It is inserted into handler chains where
21
22
 *  the handler has not set the HANDLER_CAN_GETBULK flag.
116
117
    netsnmp_register_handler_by_name("bulk_to_next",
117
118
                                     netsnmp_get_bulk_to_next_handler());
118
119
}
 
120
/**  @} */
 
121