mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-12 22:00:02 -04:00
bump chunksize to 12k
This commit is contained in:
parent
0b7ad50aab
commit
bcbcd842c7
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ export type WSErrorPayload = {
|
|||
message: string;
|
||||
};
|
||||
|
||||
// WebRTC max is 16K, let's say 8K to be safe
|
||||
export const MAX_CHUNK_SIZE = 8 * 1024;
|
||||
// WebRTC max is 16K, let's say 12K to be safe
|
||||
export const MAX_CHUNK_SIZE = 12 * 1024;
|
||||
|
||||
export { Transport } from "./Transport";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue