Skip to content

Commit 30a7901

Browse files
authored
fix(Core/WorldSocketMgr): sync default Network.OutUBuff with worldser… (azerothcore#19702)
* fix(Core/WorldSocketMgr): sync default Network.OutUBuff with worldserver.conf.dist * Update WorldSocketMgr.cpp
1 parent 3419f02 commit 30a7901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/game/Server/WorldSocketMgr.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class WorldSocketThread : public NetworkThread<WorldSocket>
3838
};
3939

4040
WorldSocketMgr::WorldSocketMgr() :
41-
BaseSocketMgr(), _socketSystemSendBufferSize(-1), _socketApplicationSendBufferSize(65536), _tcpNoDelay(true)
41+
BaseSocketMgr(), _socketSystemSendBufferSize(-1), _socketApplicationSendBufferSize(4096), _tcpNoDelay(true)
4242
{
4343
}
4444

@@ -57,7 +57,7 @@ bool WorldSocketMgr::StartWorldNetwork(Acore::Asio::IoContext& ioContext, std::s
5757

5858
// -1 means use default
5959
_socketSystemSendBufferSize = sConfigMgr->GetOption<int32>("Network.OutKBuff", -1);
60-
_socketApplicationSendBufferSize = sConfigMgr->GetOption<int32>("Network.OutUBuff", 65536);
60+
_socketApplicationSendBufferSize = sConfigMgr->GetOption<int32>("Network.OutUBuff", 4096);
6161

6262
if (_socketApplicationSendBufferSize <= 0)
6363
{

0 commit comments

Comments
 (0)