~ubuntu-branches/ubuntu/trusty/net-snmp/trusty

« back to all changes in this revision

Viewing changes to include/net-snmp/agent/null.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-09-13 12:06:21 UTC
  • Revision ID: james.westby@ubuntu.com-20040913120621-g952ntonlleihcvm
Tags: upstream-5.1.1
ImportĀ upstreamĀ versionĀ 5.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef AGENT_NULL_H
 
2
#define AGENT_NULL_H
 
3
 
 
4
#ifdef __cplusplus
 
5
extern          "C" {
 
6
#endif
 
7
 
 
8
/*
 
9
 * null.h 
 
10
 */
 
11
 
 
12
/*
 
13
 * literally does nothing and is used as a final handler for
 
14
 * "do-nothing" nodes that must exist solely for mib tree storage
 
15
 * usage..
 
16
 */
 
17
 
 
18
int             netsnmp_register_null(oid *, size_t);
 
19
 
 
20
Netsnmp_Node_Handler netsnmp_null_handler;
 
21
 
 
22
#ifdef __cplusplus
 
23
}
 
24
#endif
 
25
#endif