Start of a network options interface command

This commit is contained in:
KimLS
2019-02-24 19:24:10 -08:00
parent b156b078ed
commit cb9f0fbe31
6 changed files with 180 additions and 2 deletions
+5 -1
View File
@@ -84,6 +84,10 @@ namespace EQ
m_opcode_manager = opm;
}
virtual std::shared_ptr<EQ::Net::DaybreakConnection> GetRawConnection() {
return m_connection;
}
const std::string& RemoteEndpoint() const { return m_connection->RemoteEndpoint(); }
const DaybreakConnectionStats& GetStats() const { return m_connection->GetStats(); }
void ResetStats() { m_connection->ResetStats(); }
@@ -96,4 +100,4 @@ namespace EQ
friend class EQStreamManager;
};
}
}
}