mib2c.int_watch.conf
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:3k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. ## -*- c -*-
  2. ######################################################################
  3. ## Do the .h file
  4. ######################################################################
  5. @open -@
  6. *** Warning: only generating code for nodes of MIB type INTEGER
  7. @open ${name}.h@
  8. /*
  9.  * Note: this file originally auto-generated by mib2c using
  10.  *        $Id: mib2c.int_watch.conf,v 1.2.6.1 2005/05/03 14:38:16 dts12 Exp $
  11.  */
  12. #ifndef $name.uc_H
  13. #define $name.uc_H
  14. /* function declarations */
  15. void init_$name(void);
  16. #endif /* $name.uc_H */
  17. ######################################################################
  18. ## Do the .c file
  19. ######################################################################
  20. @open ${name}.c@
  21. /*
  22.  * Note: this file originally auto-generated by mib2c using
  23.  *        $Id: mib2c.int_watch.conf,v 1.2.6.1 2005/05/03 14:38:16 dts12 Exp $
  24.  */
  25. #include <net-snmp/net-snmp-config.h>
  26. #include <net-snmp/net-snmp-includes.h>
  27. #include <net-snmp/agent/net-snmp-agent-includes.h>
  28. #include "${name}.h"
  29. /*
  30.  * The variables we want to tie the relevant OIDs to.
  31.  * The agent will handle all GET and (if applicable) SET requests
  32.  * to these variables automatically, changing the values as needed.
  33.  */
  34. @foreach $i scalar@
  35.     @if !$i.needlength@
  36. $i.decl    $i = 0;  /* XXX: set default value */
  37.     @end@
  38. @end@
  39. /*
  40.  * Our initialization routine, called automatically by the agent 
  41.  * (Note that the function name must match init_FILENAME()) 
  42.  */
  43. void
  44. init_${name}(void)
  45. {
  46.   netsnmp_handler_registration *reg;
  47.   netsnmp_watcher_info         *winfo;
  48.   @foreach $i scalar@
  49.     @if !$i.needlength@
  50.     static oid ${i}_oid[] = { $i.commaoid };
  51.     @end@
  52.   @end@
  53.   /*
  54.    * a debugging statement.  Run the agent with -D$name to see
  55.    * the output of this debugging statement. 
  56.    */
  57.   DEBUGMSGTL(("$name", "Initializing the $name modulen"));
  58.     /*
  59.      * Register scalar watchers for each of the MIB objects.
  60.      * The ASN type and RO/RW status are taken from the MIB definition,
  61.      * but can be adjusted if needed.
  62.      *
  63.      * In most circumstances, the scalar watcher will handle all
  64.      * of the necessary processing.  But the NULL parameter in the
  65.      * netsnmp_create_handler_registration() call can be used to
  66.      * supply a user-provided handler if necessary.
  67.      *
  68.      * This approach can also be used to handle Counter64, string-
  69.      * and OID-based watched scalars (although variable-sized writeable
  70.      * objects will need some more specialised initialisation).
  71.      */
  72.   @foreach $i scalar@
  73.     @if !$i.needlength@
  74.     DEBUGMSGTL(("$name",
  75.                 "Initializing $i scalar integer.  Default value = %dn",
  76.                 $i));
  77.     reg = netsnmp_create_handler_registration(
  78.              "$i", NULL,
  79.               ${i}_oid, OID_LENGTH(${i}_oid),
  80.     @if $i.settable@
  81.               HANDLER_CAN_RWRITE);
  82.     @else@
  83.               HANDLER_CAN_RONLY);
  84.     @end@
  85.     winfo = netsnmp_create_watcher_info(
  86.                 &$i, sizeof($i.decl),
  87.                  $i.type, WATCHER_FIXED_SIZE);
  88.     if (netsnmp_register_watched_scalar( reg, winfo ) < 0 ) {
  89.         snmp_log( LOG_ERROR, "Failed to register watched $i" );
  90.     }
  91.     @end@
  92.   @end@
  93.   DEBUGMSGTL(("$name",
  94.               "Done initalizing $name modulen"));
  95. }