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

SNMP编程

开发平台:

Unix_Linux

  1. .TH "storage space for defaults" 3 "28 Nov 2005" "Version 5.2.1.rc3" "net-snmp" " -*- nroff -*-
  2. .ad l
  3. .nh
  4. .SH NAME
  5. storage space for defaults - The purpose of the default storage is three-fold:.  
  6. .PP
  7. .SS "Data Structures"
  8. .in +1c
  9. .ti -1c
  10. .RI "struct fBnetsnmp_ds_read_config_sfP"
  11. .br
  12. .in -1c
  13. .SS "Typedefs"
  14. .in +1c
  15. .ti -1c
  16. .RI "typedef fBnetsnmp_ds_read_config_sfP fBnetsnmp_ds_read_configfP"
  17. .br
  18. .in -1c
  19. .SS "Functions"
  20. .in +1c
  21. .ti -1c
  22. .RI "void fBnetsnmp_ds_handle_configfP (const char *token, char *line)"
  23. .br
  24. .ti -1c
  25. .RI "int fBnetsnmp_ds_set_booleanfP (int storeid, int which, int value)"
  26. .br
  27. .RI "fIStores 'true' or 'false' given an int value for value into netsnmp_ds_booleans[store][which] slot. fP"
  28. .ti -1c
  29. .RI "int fBnetsnmp_ds_toggle_booleanfP (int storeid, int which)"
  30. .br
  31. .ti -1c
  32. .RI "int fBnetsnmp_ds_get_booleanfP (int storeid, int which)"
  33. .br
  34. .ti -1c
  35. .RI "int fBnetsnmp_ds_set_intfP (int storeid, int which, int value)"
  36. .br
  37. .ti -1c
  38. .RI "int fBnetsnmp_ds_get_intfP (int storeid, int which)"
  39. .br
  40. .ti -1c
  41. .RI "int fBnetsnmp_ds_set_stringfP (int storeid, int which, const char *value)"
  42. .br
  43. .ti -1c
  44. .RI "char * fBnetsnmp_ds_get_stringfP (int storeid, int which)"
  45. .br
  46. .ti -1c
  47. .RI "int fBnetsnmp_ds_set_voidfP (int storeid, int which, void *value)"
  48. .br
  49. .ti -1c
  50. .RI "void * fBnetsnmp_ds_get_voidfP (int storeid, int which)"
  51. .br
  52. .ti -1c
  53. .RI "int fBnetsnmp_ds_register_configfP (u_char type, const char *ftype, const char *token, int storeid, int which)"
  54. .br
  55. .ti -1c
  56. .RI "int fBnetsnmp_ds_register_premibfP (u_char type, const char *ftype, const char *token, int storeid, int which)"
  57. .br
  58. .ti -1c
  59. .RI "void fBnetsnmp_ds_shutdownfP ()"
  60. .br
  61. .in -1c
  62. .SH "Detailed Description"
  63. .PP 
  64. The purpose of the default storage is three-fold:. 
  65. .PP
  66. 1) To create a global storage space without creating a whole bunch of globally accessible variables or a whole bunch of access functions to work with more privately restricted variables.
  67. .PP
  68. 2) To provide a single location where the thread lock- ing needs to be implemented. At the time of this writing, however, thread locking is not yet in place.
  69. .PP
  70. 3) To reduce the number of cross dependencies between code pieces that may or may not be linked together in the long run. This provides for a single loca- tion in which configuration data, for example, can be stored for a separate section of code that may not be linked in to the application in question.
  71. .PP
  72. The functions defined here implement these goals.
  73. .PP
  74. Currently, three data types are supported: booleans, inte- gers, and strings. Each of these data types have separate storage spaces. In addition, the storage space for each data type is divided further by the application level. Currently, there are two storage spaces. The first is reserved for the SNMP library itself. The second is intended for use in applications and is not modified or checked by the library, and, therefore, this is the space usable by you.
  75. .PP
  76. These definitions correspond with the 'storid' argument to the API
  77. .IP "(bu" 2
  78. define NETSNMP_DS_LIBRARY_ID 0
  79. .IP "(bu" 2
  80. define NETSNMP_DS_APPLICATION_ID 1
  81. .IP "(bu" 2
  82. define NETSNMP_DS_TOKEN_ID 2
  83. .PP
  84. .PP
  85. These definitions correspond with the 'which' argument to the API, when the storeid argument is NETSNMP_DS_LIBRARY_ID
  86. .PP
  87. library booleans
  88. .PP
  89. .IP "(bu" 2
  90. define NETSNMP_DS_LIB_MIB_ERRORS 0
  91. .IP "(bu" 2
  92. define NETSNMP_DS_LIB_SAVE_MIB_DESCRS 1
  93. .IP "(bu" 2
  94. define NETSNMP_DS_LIB_MIB_COMMENT_TERM 2
  95. .IP "(bu" 2
  96. define NETSNMP_DS_LIB_MIB_PARSE_LABEL 3
  97. .IP "(bu" 2
  98. define NETSNMP_DS_LIB_DUMP_PACKET 4
  99. .IP "(bu" 2
  100. define NETSNMP_DS_LIB_LOG_TIMESTAMP 5
  101. .IP "(bu" 2
  102. define NETSNMP_DS_LIB_DONT_READ_CONFIGS 6
  103. .IP "(bu" 2
  104. define NETSNMP_DS_LIB_MIB_REPLACE 7 replace objects from latest module
  105. .IP "(bu" 2
  106. define NETSNMP_DS_LIB_PRINT_NUMERIC_ENUM 8 print only numeric enum values
  107. .IP "(bu" 2
  108. define NETSNMP_DS_LIB_PRINT_NUMERIC_OIDS 9 print only numeric enum values
  109. .IP "(bu" 2
  110. define NETSNMP_DS_LIB_DONT_BREAKDOWN_OIDS 10 dont print oid indexes specially
  111. .IP "(bu" 2
  112. define NETSNMP_DS_LIB_ALARM_DONT_USE_SIG 11 don't use the alarm() signal
  113. .IP "(bu" 2
  114. define NETSNMP_DS_LIB_PRINT_FULL_OID 12 print fully qualified oids
  115. .IP "(bu" 2
  116. define NETSNMP_DS_LIB_QUICK_PRINT 13 print very brief output for parsing
  117. .IP "(bu" 2
  118. define NETSNMP_DS_LIB_RANDOM_ACCESS 14 random access to oid labels
  119. .IP "(bu" 2
  120. define NETSNMP_DS_LIB_REGEX_ACCESS 15 regex matching to oid labels
  121. .IP "(bu" 2
  122. define NETSNMP_DS_LIB_DONT_CHECK_RANGE 16 don't check values for ranges on send
  123. .IP "(bu" 2
  124. define NETSNMP_DS_LIB_NO_TOKEN_WARNINGS 17 no warn about unknown config tokens
  125. .IP "(bu" 2
  126. define NETSNMP_DS_LIB_NUMERIC_TIMETICKS 18 print timeticks as a number
  127. .IP "(bu" 2
  128. define NETSNMP_DS_LIB_ESCAPE_QUOTES 19 shell escape quote marks in oids
  129. .IP "(bu" 2
  130. define NETSNMP_DS_LIB_REVERSE_ENCODE 20 encode packets from back to front
  131. .IP "(bu" 2
  132. define NETSNMP_DS_LIB_PRINT_BARE_VALUE 21 just print value (not OID = value)
  133. .IP "(bu" 2
  134. define NETSNMP_DS_LIB_EXTENDED_INDEX 22 print extended index format [x1][x2]
  135. .IP "(bu" 2
  136. define NETSNMP_DS_LIB_PRINT_HEX_TEXT 23 print ASCII text along with hex strings
  137. .IP "(bu" 2
  138. define NETSNMP_DS_LIB_PRINT_UCD_STYLE_OID 24 print OID's using the UCD-style prefix suppression
  139. .IP "(bu" 2
  140. define NETSNMP_DS_LIB_READ_UCD_STYLE_OID 25 require top-level OIDs to be prefixed with a dot
  141. .IP "(bu" 2
  142. define NETSNMP_DS_LIB_HAVE_READ_PREMIB_CONFIG 26 have the pre-mib parsing config tokens been processed
  143. .IP "(bu" 2
  144. define NETSNMP_DS_LIB_HAVE_READ_CONFIG 27 have the config tokens been processed
  145. .IP "(bu" 2
  146. define NETSNMP_DS_LIB_QUICKE_PRINT 28
  147. .IP "(bu" 2
  148. define NETSNMP_DS_LIB_DONT_PRINT_UNITS 29 don't print UNITS suffix
  149. .IP "(bu" 2
  150. define NETSNMP_DS_LIB_NO_DISPLAY_HINT 30 don't apply DISPLAY-HINTs
  151. .IP "(bu" 2
  152. define NETSNMP_DS_LIB_16BIT_IDS 31 restrict requestIDs, etc to 16-bit values
  153. .IP "(bu" 2
  154. define NETSNMP_DS_LIB_DONT_PERSIST_STATE 32 don't save/load any persistant state
  155. .IP "(bu" 2
  156. define NETSNMP_DS_LIB_2DIGIT_HEX_OUTPUT 33 print a leading 0 on hex values <= 'f'
  157. .PP
  158. .PP
  159. library integers
  160. .PP
  161. .IP "(bu" 2
  162. define NETSNMP_DS_LIB_MIB_WARNINGS 0
  163. .IP "(bu" 2
  164. define NETSNMP_DS_LIB_SECLEVEL 1
  165. .IP "(bu" 2
  166. define NETSNMP_DS_LIB_SNMPVERSION 2
  167. .IP "(bu" 2
  168. define NETSNMP_DS_LIB_DEFAULT_PORT 3
  169. .IP "(bu" 2
  170. define NETSNMP_DS_LIB_OID_OUTPUT_FORMAT 4
  171. .IP "(bu" 2
  172. define NETSNMP_DS_LIB_STRING_OUTPUT_FORMAT 5
  173. .PP
  174. .PP
  175. library strings
  176. .PP
  177. .IP "(bu" 2
  178. define NETSNMP_DS_LIB_SECNAME 0
  179. .IP "(bu" 2
  180. define NETSNMP_DS_LIB_CONTEXT 1
  181. .IP "(bu" 2
  182. define NETSNMP_DS_LIB_PASSPHRASE 2
  183. .IP "(bu" 2
  184. define NETSNMP_DS_LIB_AUTHPASSPHRASE 3
  185. .IP "(bu" 2
  186. define NETSNMP_DS_LIB_PRIVPASSPHRASE 4
  187. .IP "(bu" 2
  188. define NETSNMP_DS_LIB_OPTIONALCONFIG 5
  189. .IP "(bu" 2
  190. define NETSNMP_DS_LIB_APPTYPE 6
  191. .IP "(bu" 2
  192. define NETSNMP_DS_LIB_COMMUNITY 7
  193. .IP "(bu" 2
  194. define NETSNMP_DS_LIB_PERSISTENT_DIR 8
  195. .IP "(bu" 2
  196. define NETSNMP_DS_LIB_CONFIGURATION_DIR 9
  197. .IP "(bu" 2
  198. define NETSNMP_DS_LIB_SECMODEL 10
  199. .IP "(bu" 2
  200. define NETSNMP_DS_LIB_MIBDIRS 11
  201. .IP "(bu" 2
  202. define NETSNMP_DS_LIB_OIDSUFFIX 12
  203. .IP "(bu" 2
  204. define NETSNMP_DS_LIB_OIDPREFIX 13
  205. .IP "(bu" 2
  206. define NETSNMP_DS_LIB_CLIENT_ADDR 14
  207. .IP "(bu" 2
  208. define NETSNMP_DS_LIB_TEMP_FILE_PATTERN 15
  209. .IP "(bu" 2
  210. define NETSNMP_DS_LIB_AUTHMASTERKEY 16
  211. .IP "(bu" 2
  212. define NETSNMP_DS_LIB_PRIVMASTERKEY 17
  213. .IP "(bu" 2
  214. define NETSNMP_DS_LIB_AUTHLOCALIZEDKEY 18
  215. .IP "(bu" 2
  216. define NETSNMP_DS_LIB_PRIVLOCALIZEDKEY 19
  217. .PP
  218. .SH "Function Documentation"
  219. .PP 
  220. .SS "int netsnmp_ds_set_boolean (int storeid, int which, int value)"
  221. .PP
  222. Stores 'true' or 'false' given an int value for value into netsnmp_ds_booleans[store][which] slot. 
  223. .PP
  224. fBParameters:fP
  225. .RS 4
  226. fIstoreidfP an index to the boolean storage container's first index(store)
  227. .br
  228. fIwhichfP an index to the boolean storage container's second index(which)
  229. .br
  230. fIvaluefP if > 0, 'true' is set into the slot otherwise 'false'
  231. .RE
  232. .PP
  233. fBReturns:fP
  234. .RS 4
  235. Returns SNMPPERR_GENERR if the storeid and which parameters do not correspond to a valid slot, or SNMPERR_SUCCESS otherwise.
  236. .RE
  237. .PP
  238. .PP
  239. Definition at line 197 of file default_store.c.
  240. .PP
  241. Referenced by init_agent(), netsnmp_ds_handle_config(), read_configs(), read_premib_configs(), setup_tree(), and snmp_out_toggle_options().