Re: [webrtc-pc] RTCSctpTransport.maxMessageSize 0 case

Correction, the algorithm would have to be:

```python
if can_send_mms == 0 or remote_mms == 0:
    mms = max(can_send_mms, remote_mms)
else:
    mms = min(can_send_mms, remote_mms)
```

-- 
GitHub Notification of comment by lgrahl
Please view or discuss this issue at https://github.com/w3c/webrtc-pc/issues/1446#issuecomment-340204737 using your GitHub account

Received on Saturday, 28 October 2017 16:55:26 UTC