We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0676cce commit c6051daCopy full SHA for c6051da
src/QUICConnection.ts
@@ -353,15 +353,6 @@ class QUICConnection extends EventTarget {
353
}) {
354
super();
355
this.logger = logger ?? new Logger(`${this.constructor.name} ${scid}`);
356
- // Checking constraints
357
- if (
358
- config.keepAliveIntervalTime != null &&
359
- config.keepAliveIntervalTime >= config.maxIdleTimeout
360
- ) {
361
- throw new errors.ErrorQUICConnectionInvalidConfig(
362
- 'keepAliveIntervalTime must be shorter than maxIdleTimeout',
363
- );
364
- }
365
366
const quicheConfig = buildQuicheConfig(config);
367
let conn: Connection;
0 commit comments