Skip to content

Commit b4d567c

Browse files
committed
increase SCTP_NUM_STREAMS for libwebrtc based handlers
1 parent 432b7b6 commit b4d567c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/handlers/Chrome111.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import type {
3737
const logger = new Logger('Chrome111');
3838

3939
const NAME = 'Chrome111';
40-
const SCTP_NUM_STREAMS = { OS: 1024, MIS: 1024 };
40+
const SCTP_NUM_STREAMS = { OS: 65535, MIS: 65535 };
4141

4242
export class Chrome111
4343
extends EnhancedEventEmitter<HandlerEvents>

src/handlers/ReactNative106.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import type {
3838
const logger = new Logger('ReactNative106');
3939

4040
const NAME = 'ReactNative106';
41-
const SCTP_NUM_STREAMS = { OS: 1024, MIS: 1024 };
41+
const SCTP_NUM_STREAMS = { OS: 65535, MIS: 65535 };
4242

4343
export class ReactNative106
4444
extends EnhancedEventEmitter<HandlerEvents>

src/handlers/Safari12.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import type {
3737
const logger = new Logger('Safari12');
3838

3939
const NAME = 'Safari12';
40-
const SCTP_NUM_STREAMS = { OS: 1024, MIS: 1024 };
40+
const SCTP_NUM_STREAMS = { OS: 65535, MIS: 65535 };
4141

4242
export class Safari12
4343
extends EnhancedEventEmitter<HandlerEvents>

0 commit comments

Comments
 (0)