tarinc.h
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.   Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14.   
  15. =============================================================================*/
  16. // commonly used target definitons
  17. //
  18. #ifndef _TARDEFS
  19. #define _TARDEFS
  20. #include "db_cls.h"
  21. // registry tags
  22. #define BROWSER_VALUE "Default SNMP++ Target Values"
  23. #define DB_NAME "Target DB Name"
  24. #define READ_COMMUNITY "Read Community Name"
  25. #define WRITE_COMMUNITY "Read/Write Community Name"
  26. #define TIMEOUT "TimeOut"
  27. #define RETRIES "Retries"
  28. #define PROTOCOL "Protocol"
  29. #define SNMPTYPE "SNMP Type"
  30. #define ERR_MSG "SNMP++ Browser Error"
  31. // default values
  32. #define DEF_DB_NAME "target.db"
  33. #define PUBLIC "public"
  34. #define DEF_TIMEOUT 50
  35. #define DEF_RETRIES 0
  36. #define IP "ip"
  37. #define IPX "ipx"
  38. #define V1  "v1"
  39. #define V2C "v2c"
  40. #define IP_TYPE 1
  41. #define IPX_TYPE 2
  42. #define SNMPV1 1
  43. #define SNMPV2C 2
  44. // persistent target structure
  45. typedef struct
  46. {
  47.    Key key;                        // Address as a string
  48.    char address_type;              // ip, ipx or emulate
  49.    char snmp_type;                 // v1 or v2c
  50.    int  timeout;                   // # of timeout
  51.    int  retries;                   // # of retries
  52.    char read_community[80];        // get community name
  53.    char write_community[80];       // set community name
  54.    char alias[40];                 // optional user defined alias name
  55. } TargetDb_Rec;
  56. #endif  // _TARDEF