Issue 231: DataChannel: short vs. long data types

>From Robin Raymond:

dictionary RTCDataChannelParameters {
DOMString label = "";
boolean ordered = true;
unsigned short maxPacketLifetime;
unsigned short maxRetransmits;
DOMString protocol = "";
boolean negotiated = false;
unsigned short id;
};
unsigned short maxPacketLifetime;
unsigned short maxRetransmits;
^ those aren’t shorts (16 bits), they are 32 bit in the protocol

Received on Monday, 31 August 2015 20:55:29 UTC