All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsTcpSocketSet.h
1 // Copyright eeGeo Ltd (2012-2016), All Rights Reserved
2 
3 #pragma once
4 
5 #include "EegeoWindowsGuard.h"
6 #include "Networking.h"
7 #include "ITcpSocketSet.h"
8 
9 namespace Eegeo
10 {
11  namespace Networking
12  {
14  {
15  public:
17 
18  void Set(const ITcpSocket& socket);
19  bool IsSet(const ITcpSocket& socket);
20  int Select(time_t timeoutSeconds, long timeoutMicroseconds);
21 
22  private:
23  fd_set m_fd_set;
24  };
25  }
26 }