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.

41 lines
856 B

  1. /*
  2. * Filename: NLB_Cluster.h
  3. * Description:
  4. * Author: shouse, 04.10.01
  5. */
  6. #ifndef __NLB_CLUSTER_H__
  7. #define __NLB_CLUSTER_H__
  8. #include "NLB_Common.h"
  9. #include "NLB_Host.h"
  10. #include "NLB_PortRule.h"
  11. class NLB_Cluster {
  12. public:
  13. NLB_Cluster() {
  14. SecondaryIPAddressList.clear();
  15. HostList.clear();
  16. PortRuleList.clear();
  17. }
  18. ~NLB_Cluster() {}
  19. NLB_Name Name;
  20. NLB_Label Label;
  21. NLB_ClusterMode ClusterMode;
  22. NLB_DomainName DomainName;
  23. NLB_NetworkAddress NetworkAddress;
  24. NLB_RemoteControl RemoteControl;
  25. NLB_IPAddress PrimaryIPAddress;
  26. NLB_IPAddress IGMPMulticastIPAddress;
  27. vector<NLB_IPAddress> SecondaryIPAddressList;
  28. vector<NLB_Host> HostList;
  29. vector<NLB_PortRule> PortRuleList;
  30. private:
  31. };
  32. #endif