diff options
| author | Andrew Meadows <leviathan@lindenlab.com> | 2026-05-27 10:18:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-27 10:18:29 -0700 |
| commit | a1b68fb8ed6c2589dd13bd9ba1fab7050ba38226 (patch) | |
| tree | 0a86659664208322ac0953e17470133541c91b10 /indra/llmessage/net.cpp | |
| parent | f99e2233a40e3a7b88e6c54aa89a1bc0bcd76456 (diff) | |
Drop fewer packets on UDP packet flood (#5565)
* ACK received-but-unprocessed packets when queued
* Prioritize packets between high- and low-priority (high-priority are: reliable packets that need an ACK)
* Increase max size of LLPacketRing buffer
Diffstat (limited to 'indra/llmessage/net.cpp')
| -rw-r--r-- | indra/llmessage/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/net.cpp b/indra/llmessage/net.cpp index 2be5a9e5b6..0df38d040a 100644 --- a/indra/llmessage/net.cpp +++ b/indra/llmessage/net.cpp @@ -326,7 +326,7 @@ S32 receive_packet(int hSocket, char * receiveBuffer) return 0; if (WSAECONNRESET == WSAGetLastError()) return 0; - LL_INFOS() << "receivePacket() failed, Error: " << WSAGetLastError() << LL_ENDL; + LL_INFOS() << "receive_packet() failed, Error: " << WSAGetLastError() << LL_ENDL; } return nRet; |
