mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 13:28:09 +02:00
add missing break to switch for LightACK
This commit is contained in:
parent
3f85e8a2fe
commit
f2cb85ab09
1 changed files with 1 additions and 0 deletions
|
@ -415,6 +415,7 @@ void Connection::processControl(std::unique_ptr<ControlPacket> controlPacket) {
|
||||||
if (_hasReceivedHandshakeACK) {
|
if (_hasReceivedHandshakeACK) {
|
||||||
processLightACK(move(controlPacket));
|
processLightACK(move(controlPacket));
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case ControlPacket::ACK2:
|
case ControlPacket::ACK2:
|
||||||
if (_hasReceivedHandshake) {
|
if (_hasReceivedHandshake) {
|
||||||
processACK2(move(controlPacket));
|
processACK2(move(controlPacket));
|
||||||
|
|
Loading…
Reference in a new issue