@baltica/raknet 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,8 +8,8 @@ const MTU_HEADER_SIZE = 36;
|
|
|
8
8
|
const RECEIVE_WINDOW = 2048;
|
|
9
9
|
const RELIABLE_WINDOW = 4096;
|
|
10
10
|
const FRAGMENT_TIMEOUT = 30_000;
|
|
11
|
-
const ORDER_QUEUE_MAX =
|
|
12
|
-
const ORDER_SKIP_THRESHOLD =
|
|
11
|
+
const ORDER_QUEUE_MAX = 4096;
|
|
12
|
+
const ORDER_SKIP_THRESHOLD = 8192;
|
|
13
13
|
const RAKNET_PROTOCOL = 11;
|
|
14
14
|
const GAME_PACKET_ID = 0xfe;
|
|
15
15
|
class NetworkSession extends utils_1.Emitter {
|