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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef SET_HELPER_H
  2. #define SET_HELPER_H
  3. #ifdef __cplusplus
  4. extern          "C" {
  5. #endif
  6. typedef struct netsnmp_set_info_s {
  7.     int             action;
  8.     void           *stateRef;
  9.     /*
  10.      * don't use yet: 
  11.      */
  12.     void          **oldData;
  13.     int             setCleanupFlags;    /* XXX: client sets this to: */
  14. #define AUTO_FREE_STATEREF 0x01 /* calls free(stateRef) */
  15. #define AUTO_FREE_OLDDATA  0x02 /* calls free(*oldData) */
  16. #define AUTO_UNDO          0x04 /* ... */
  17. } netsnmp_set_info;
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif