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

So, the browser should not blindly announce the maximum message size of the remote peer when it is not capable of sending such a large message? I completely agree. In code, I'd say:

```python
mms = can_send_mms if remote_mms == 0 else min(remote_mms, can_send_mms)
```
Would you agree with that?

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

Received on Thursday, 6 July 2017 17:26:11 UTC