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

SNMP编程

开发平台:

Unix_Linux

  1. .TH "debug: print out debugging information about the handler chain being called." 3 "28 Nov 2005" "Version 5.2.1.rc3" "net-snmp" " -*- nroff -*-
  2. .ad l
  3. .nh
  4. .SH NAME
  5. debug: print out debugging information about the handler chain being called. - This is a useful module for run-time debugging of requests as the pass this handler in a calling chain.  
  6. .PP
  7. .SS "handler"
  8. .in +1c
  9. .ti -1c
  10. .RI "void fBnetsnmp_init_serializefP (void)"
  11. .br
  12. .RI "fIinitializes the serialize helper which then registers a serialize handler as a run-time injectable handler for configuration file use. fP"
  13. .ti -1c
  14. .RI "void fBnetsnmp_init_read_only_helperfP (void)"
  15. .br
  16. .RI "fIinitializes the read_only helper which then registers a read_only handler as a run-time injectable handler for configuration file use. fP"
  17. .ti -1c
  18. .RI "void fBnetsnmp_init_bulk_to_next_helperfP (void)"
  19. .br
  20. .RI "fIinitializes the bulk_to_next helper which then registers a bulk_to_next handler as a run-time injectable handler for configuration file use. fP"
  21. .ti -1c
  22. .RI "void fBnetsnmp_init_table_datasetfP (void)"
  23. .br
  24. .ti -1c
  25. .RI "void fBnetsnmp_init_stash_cache_helperfP (void)"
  26. .br
  27. .RI "fIinitializes the stash_cache helper which then registers a stash_cache handler as a run-time injectable handler for configuration file use. fP"
  28. .ti -1c
  29. .RI "void fBnetsnmp_init_helpersfP (void)"
  30. .br
  31. .RI "fIcall the initialization sequence for all handlers with init_ routines. fP"
  32. .in -1c
  33. .SS "Functions"
  34. .in +1c
  35. .ti -1c
  36. .RI "fBnetsnmp_mib_handlerfP * fBnetsnmp_get_debug_handlerfP (void)"
  37. .br
  38. .RI "fIreturns a debug handler that can be injected into a given handler chain. fP"
  39. .ti -1c
  40. .RI "void fBdebug_print_requestsfP (fBnetsnmp_request_infofP *requests)"
  41. .br
  42. .ti -1c
  43. .RI "int fBnetsnmp_debug_helperfP (fBnetsnmp_mib_handlerfP *handler, fBnetsnmp_handler_registrationfP *reginfo, fBnetsnmp_agent_request_infofP *reqinfo, fBnetsnmp_request_infofP *requests)"
  44. .br
  45. .ti -1c
  46. .RI "void fBnetsnmp_init_debug_helperfP (void)"
  47. .br
  48. .RI "fIinitializes the debug helper which then registers a debug handler as a run-time injectable handler for configuration file use. fP"
  49. .in -1c
  50. .SH "Detailed Description"
  51. .PP 
  52. This is a useful module for run-time debugging of requests as the pass this handler in a calling chain. 
  53. .PP
  54. All debugging output is done via the standard debugging routines with a token name of 'helper:debug', so use the -Dhelper:debug command line flag to see the output when running the snmpd demon. It's not recommended you compile this into a handler chain during compile time, but instead use the 'injectHandler' token in the snmpd.conf file (or similar) to add it to the chain later:
  55. .PP
  56. injectHandler debug my_module_name
  57. .PP
  58. to see an example output, try:
  59. .PP
  60. injectHandler debug mibII/system
  61. .PP
  62. and then run snmpwalk on the 'system' group.
  63. .SH "Function Documentation"
  64. .PP 
  65. .SS "fBnetsnmp_mib_handlerfP* netsnmp_get_debug_handler (void)"
  66. .PP
  67. returns a debug handler that can be injected into a given handler chain. 
  68. .PP
  69. Definition at line 54 of file debug_handler.c.
  70. .PP
  71. References netsnmp_create_handler(), and netsnmp_debug_helper().
  72. .PP
  73. Referenced by netsnmp_init_debug_helper().
  74. .SS "void netsnmp_init_bulk_to_next_helper (void)"
  75. .PP
  76. initializes the bulk_to_next helper which then registers a bulk_to_next handler as a run-time injectable handler for configuration file use. 
  77. .PP
  78. Definition at line 114 of file bulk_to_next.c.
  79. .PP
  80. Referenced by netsnmp_init_helpers().
  81. .SS "void netsnmp_init_debug_helper (void)"
  82. .PP
  83. initializes the debug helper which then registers a debug handler as a run-time injectable handler for configuration file use. 
  84. .PP
  85. Definition at line 158 of file debug_handler.c.
  86. .PP
  87. References netsnmp_get_debug_handler(), and netsnmp_register_handler_by_name().
  88. .SS "void netsnmp_init_helpers (void)"
  89. .PP
  90. call the initialization sequence for all handlers with init_ routines. 
  91. .PP
  92. Definition at line 36 of file all_helpers.c.
  93. .PP
  94. References netsnmp_init_bulk_to_next_helper(), netsnmp_init_debug_helper(), netsnmp_init_read_only_helper(), netsnmp_init_serialize(), netsnmp_init_stash_cache_helper(), and netsnmp_init_table_dataset().
  95. .PP
  96. Referenced by init_agent().
  97. .SS "void netsnmp_init_read_only_helper (void)"
  98. .PP
  99. initializes the read_only helper which then registers a read_only handler as a run-time injectable handler for configuration file use. 
  100. .PP
  101. Definition at line 86 of file read_only.c.
  102. .PP
  103. Referenced by netsnmp_init_helpers().
  104. .SS "void netsnmp_init_serialize (void)"
  105. .PP
  106. initializes the serialize helper which then registers a serialize handler as a run-time injectable handler for configuration file use. 
  107. .PP
  108. Definition at line 96 of file serialize.c.
  109. .PP
  110. Referenced by netsnmp_init_helpers().
  111. .SS "void netsnmp_init_stash_cache_helper (void)"
  112. .PP
  113. initializes the stash_cache helper which then registers a stash_cache handler as a run-time injectable handler for configuration file use. 
  114. .PP
  115. Definition at line 188 of file stash_cache.c.
  116. .PP
  117. References netsnmp_get_stash_cache_handler(), and netsnmp_register_handler_by_name().
  118. .PP
  119. Referenced by netsnmp_init_helpers().