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