mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 16:26:17 +02:00
Use the 1450 limit everywhere, in case other places are running into the issue
I experienced with metavoxels.
This commit is contained in:
parent
dbbfccc309
commit
343f610442
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
#include "MetavoxelMessages.h"
|
||||
|
||||
// in sequencer parlance, a "packet" may consist of multiple datagrams. clarify when we refer to actual datagrams
|
||||
const int MAX_DATAGRAM_SIZE = 1450;
|
||||
const int MAX_DATAGRAM_SIZE = MAX_PACKET_SIZE;
|
||||
|
||||
const int DEFAULT_MAX_PACKET_SIZE = 3000;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "DomainHandler.h"
|
||||
#include "Node.h"
|
||||
|
||||
const int MAX_PACKET_SIZE = 1500;
|
||||
const int MAX_PACKET_SIZE = 1450;
|
||||
|
||||
const quint64 NODE_SILENCE_THRESHOLD_MSECS = 2 * 1000;
|
||||
|
||||
|
|
Loading…
Reference in a new issue