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

« back to all changes in this revision

Viewing changes to agent/helpers/row_merge.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 row_merge row_merge: Calls sub handlers with request for one row at a time.
 
18
/** @defgroup row_merge row_merge
 
19
 *  Calls sub handlers with request for one row at a time.
19
20
 *  @ingroup utilities
20
21
 *  This helper splits a whole bunch of requests into chunks based on the row
21
22
 *  index that they refer to, and passes all requests for a given row to the lower handlers.
199
200
    netsnmp_register_handler_by_name("row_merge",
200
201
                                     netsnmp_get_row_merge_handler(-1));
201
202
}
 
203
/**  @} */
 
204