Fix build since last commit

Also rename method to better match what it does.
master
est31 2015-05-16 22:14:15 +02:00
parent 8dbf683313
commit c297a75a7d
2 changed files with 5 additions and 5 deletions

View File

@ -260,7 +260,7 @@ public:
m_version_minor(0), m_version_minor(0),
m_version_patch(0), m_version_patch(0),
m_full_version("unknown"), m_full_version("unknown"),
m_supported_compressions(0), m_deployed_compression(0),
m_connection_time(getTime(PRECISION_SECONDS)) m_connection_time(getTime(PRECISION_SECONDS))
{ {
} }
@ -337,8 +337,8 @@ public:
void setPendingSerializationVersion(u8 version) void setPendingSerializationVersion(u8 version)
{ m_pending_serialization_version = version; } { m_pending_serialization_version = version; }
void setSupportedCompressionModes(u16 byteFlag) void setDeployedCompressionMode(u16 byteFlag)
{ m_supported_compressions = byteFlag; } { m_deployed_compression = byteFlag; }
void confirmSerializationVersion() void confirmSerializationVersion()
{ serialization_version = m_pending_serialization_version; } { serialization_version = m_pending_serialization_version; }
@ -416,7 +416,7 @@ private:
std::string m_full_version; std::string m_full_version;
u16 m_supported_compressions; u16 m_deployed_compression;
/* /*
time this client was created time this client was created

View File

@ -281,7 +281,7 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
Send(&resp_pkt); Send(&resp_pkt);
client->allowed_auth_mechs = auth_mechs; client->allowed_auth_mechs = auth_mechs;
client->setSupportedCompressionModes(compression_modes); client->setDeployedCompressionMode(depl_compress_mode);
m_clients.event(pkt->getPeerId(), CSE_Hello); m_clients.event(pkt->getPeerId(), CSE_Hello);
} }