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

Sh.., you're right, I did mix that up. What was I thinking...

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

Would you agree with that one @nils-ohlmeier?

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

Received on Tuesday, 31 October 2017 21:01:50 UTC