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

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. // Set.h : header file
  16. //
  17. #include "snmp_pp.h"
  18. #include "tarinc.h"
  19. #define MAX_SET_VBS 25
  20. /////////////////////////////////////////////////////////////////////////////
  21. // Set dialog
  22. class Set : public CDialog
  23. {
  24. // Construction
  25. public:
  26. Set(CWnd* pParent = NULL);   // standard constructor
  27. // Dialog Data
  28. //{{AFX_DATA(Set)
  29. enum { IDD = IDD_SET };
  30. CString m_read_community;
  31. CString m_write_community;
  32. CString m_retries;
  33. CString m_timeouts;
  34. CString m_mgmt_proto;
  35. CString m_net_proto;
  36. CString m_oid;
  37. CString m_output;
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(Set)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. Snmp *snmp;
  48. virtual void PostNcDestroy() 
  49. {  
  50.    if ( snmp != NULL) delete snmp;
  51.        delete this;   
  52. };
  53. void load_target_attribs( TargetDb_Rec db_rec);
  54. void load_mib_view( CTreeCtrl *tree);
  55. void delete_nodes( CTreeCtrl *tree, HTREEITEM node);
  56. void display_response( int status, Pdu &pdu, SnmpTarget &target, Snmp * snmp);
  57. void enable_controls( int state);
  58. Vb set_vbs[MAX_SET_VBS];
  59. // Generated message map functions
  60. //{{AFX_MSG(Set)
  61. afx_msg void OnDestroy();
  62. virtual BOOL OnInitDialog();
  63. afx_msg void OnSelchangeTargets();
  64. afx_msg void OnAdd();
  65. afx_msg void OnAddoid();
  66. afx_msg void OnEdit();
  67. afx_msg void OnRemove();
  68. afx_msg void OnSet();
  69. afx_msg void OnDblclkPdu();
  70. afx_msg void OnDblclkMibtree(NMHDR* pNMHDR, LRESULT* pResult);
  71. virtual void OnCancel();
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };