this is a more "clean" conversion to 64 bit than the type-fixups branch, which does borrow some elements from it but has far less find and replace...it is about 98-99% done, notes to follow later

This commit is contained in:
DarthArgus
2017-01-24 03:35:59 +00:00
parent 42b949c3dc
commit 36686348e9
458 changed files with 2282 additions and 2367 deletions
@@ -39,7 +39,7 @@ class GenericConnection : public TcpConnectionHandler
{
public:
GenericConnection(const char *host,
short port,
int16_t port,
GenericAPICore *apiCore,
unsigned reconnectTimeout,
unsigned noDataTimeoutSecs = 5,
@@ -55,7 +55,7 @@ class GenericConnection : public TcpConnectionHandler
virtual void OnTerminated(TcpConnection *con);
void Send(Base::ByteStream &msg);
inline const char *getHost() const { return m_host.c_str(); }
inline const short getPort() const { return m_port; }
inline const int16_t getPort() const { return m_port; }
inline eConnectStatus isConnected() { return m_bConnected; }
void disconnect();
@@ -67,7 +67,7 @@ private:
TcpManager *m_manager;
TcpConnection *m_con;
std::string m_host;
short m_port;
int16_t m_port;
unsigned m_lastTrack;
eConState m_conState;
time_t m_conTimeout;