mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Merge pull request #1231 from J0linar/platformNet_PR
+proper buffer size for udp socket
This commit is contained in:
commit
443cd2d607
1 changed files with 1 additions and 1 deletions
|
|
@ -503,7 +503,7 @@ bool Net::openPort(S32 port, bool doBind)
|
|||
}
|
||||
|
||||
if(error == NoError)
|
||||
error = setBufferSize(udpSocket, 32768);
|
||||
error = setBufferSize(udpSocket, 32768*8);
|
||||
|
||||
if(error == NoError && !useVDP)
|
||||
error = setBroadcast(udpSocket, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue