From da81b7a76dc6a868f7b754e1301e7ca1fd09ee12 Mon Sep 17 00:00:00 2001 From: KimLS Date: Sun, 5 Mar 2017 19:09:27 -0800 Subject: [PATCH] No longer buffer ack packets to resolve an issue where the client was hanging slightly on connection termination --- common/net/daybreak_connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/net/daybreak_connection.cpp b/common/net/daybreak_connection.cpp index a8f255088..cf67fdcae 100644 --- a/common/net/daybreak_connection.cpp +++ b/common/net/daybreak_connection.cpp @@ -1055,7 +1055,7 @@ void EQ::Net::DaybreakConnection::SendAck(int stream_id, uint16_t seq) DynamicPacket p; p.PutSerialize(0, ack); - InternalBufferedSend(p); + InternalSend(p); } void EQ::Net::DaybreakConnection::SendOutOfOrderAck(int stream_id, uint16_t seq) @@ -1068,7 +1068,7 @@ void EQ::Net::DaybreakConnection::SendOutOfOrderAck(int stream_id, uint16_t seq) DynamicPacket p; p.PutSerialize(0, ack); - InternalBufferedSend(p); + InternalSend(p); } void EQ::Net::DaybreakConnection::SendStatSync()