// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Engine - Network module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include namespace Nz { inline TcpClient::TcpClient() : AbstractSocket(SocketType_TCP), m_keepAliveInterval(1000), //TODO: Query OS default value m_keepAliveTime(7'200'000), //TODO: Query OS default value m_isKeepAliveEnabled(false), //TODO: Query OS default value m_isLowDelayEnabled(false) //TODO: Query OS default value { } inline TcpClient::TcpClient(TcpClient&& tcpClient) : AbstractSocket(std::move(tcpClient)), m_peerAddress(std::move(tcpClient.m_peerAddress)), m_keepAliveInterval(tcpClient.m_keepAliveInterval), m_keepAliveTime(tcpClient.m_keepAliveTime), m_isLowDelayEnabled(tcpClient.m_isLowDelayEnabled), m_isKeepAliveEnabled(tcpClient.m_isKeepAliveEnabled) { } inline void TcpClient::Disconnect() { Close(); } inline UInt64 TcpClient::GetKeepAliveInterval() const { return m_keepAliveInterval; } inline UInt64 TcpClient::GetKeepAliveTime() const { return m_keepAliveTime; } inline IpAddress TcpClient::GetRemoteAddress() const { return m_peerAddress; } inline bool TcpClient::IsLowDelayEnabled() const { return m_isLowDelayEnabled; } inline bool TcpClient::IsKeepAliveEnabled() const { return m_isKeepAliveEnabled; } } #include