Network: Fix some move stuff
Former-commit-id: 33b24a038319b444b9a3b84cfeea38c8305e6568
This commit is contained in:
@@ -17,17 +17,6 @@ namespace Nz
|
||||
{
|
||||
}
|
||||
|
||||
inline TcpClient::TcpClient(TcpClient&& tcpClient) :
|
||||
AbstractSocket(std::move(tcpClient)),
|
||||
Stream(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();
|
||||
|
||||
Reference in New Issue
Block a user