File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ class RemoteClient
260
260
m_version_minor (0 ),
261
261
m_version_patch (0 ),
262
262
m_full_version (" unknown" ),
263
- m_supported_compressions (0 ),
263
+ m_deployed_compression (0 ),
264
264
m_connection_time (getTime(PRECISION_SECONDS))
265
265
{
266
266
}
@@ -337,8 +337,8 @@ class RemoteClient
337
337
void setPendingSerializationVersion (u8 version)
338
338
{ m_pending_serialization_version = version; }
339
339
340
- void setSupportedCompressionModes (u16 byteFlag)
341
- { m_supported_compressions = byteFlag; }
340
+ void setDeployedCompressionMode (u16 byteFlag)
341
+ { m_deployed_compression = byteFlag; }
342
342
343
343
void confirmSerializationVersion ()
344
344
{ serialization_version = m_pending_serialization_version; }
@@ -416,7 +416,7 @@ class RemoteClient
416
416
417
417
std::string m_full_version;
418
418
419
- u16 m_supported_compressions ;
419
+ u16 m_deployed_compression ;
420
420
421
421
/*
422
422
time this client was created
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
281
281
Send (&resp_pkt);
282
282
283
283
client->allowed_auth_mechs = auth_mechs;
284
- client->setSupportedCompressionModes (compression_modes );
284
+ client->setDeployedCompressionMode (depl_compress_mode );
285
285
286
286
m_clients.event (pkt->getPeerId (), CSE_Hello);
287
287
}
You can’t perform that action at this time.
0 commit comments