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