Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow specifying custom libdatachannel configuration options
This includes: - enableIceTcp - enableIceUdpMux - portRangeBegin - portRangeEnd - mtu e.g. ``` var pc := WebRTCPeerConnection.new() if OS.get_name() != "Web": pc.initialize({ "libdatachannel": { "enableIceUdpMux": true, "portRangeBegin": 4343, "portRangeEnd": 4343, }, }) ```
- Loading branch information