- Internals: add
Utils::Json::IsPositiveInteger()to not rely onis_number_unsigned()of json lib, which is unreliable due to its design. - Avoid ES6
export defaultand always use namedexport(it does not affect public API). -
router.pipeToRouter(): Ensure a singlePipeTransportpair is created betweenrouter1androuter2.- Since the operation is async, it may happen that two simultaneous calls to
router1.pipeToRouter({ producerId: xxx, router: router2 })would end up generating two pairs ofPipeTranports. To prevent that, let’s use an async queue.
- Since the operation is async, it may happen that two simultaneous calls to
- Add
keyFrameWaitTimeoption toProducerOptions. See: - Update Node and C++ deps.
This topic was automatically closed after 2 days. New replies are no longer allowed.