Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
596 B

  1. /*
  2. * Filename: NLB_Host.h
  3. * Description:
  4. * Author: shouse, 04.10.01
  5. */
  6. #ifndef __NLB_HOST_H__
  7. #define __NLB_HOST_H__
  8. #include "NLB_Common.h"
  9. #include "NLB_Cluster.h"
  10. #include "NLB_PortRule.h"
  11. class NLB_Host {
  12. public:
  13. NLB_Host() {
  14. PortRuleList.clear();
  15. }
  16. ~NLB_Host() {}
  17. NLB_Name Name;
  18. NLB_HostName HostName;
  19. NLB_Label Label;
  20. NLB_HostID HostID;
  21. NLB_HostState HostState;
  22. NLB_IPAddress DedicatedIPAddress;
  23. NLB_IPAddress ConnectionIPAddress;
  24. NLB_Adapter Adapter;
  25. vector<NLB_PortRule> PortRuleList;
  26. private:
  27. };
  28. #endif