## my connect code ```javascript var socket; if (that.isIE9()) { socket = new SockJS(url) } else { socket = new SockJS(url, null, {transports:'websocket'}) } ``` ## i found code at "SockJS.prototype._connect" ```javascript var timeoutMs = (this._rto * Transport.roundTrips) || 5000; this._transportTimeoutId = setTimeout(this._transportTimeout.bind(this), timeoutMs); ``` ## i log the timeoutMs is 698  ## in "websocket" my server reponse may be than this time... how to change it , did it has a setting ?