summaryrefslogtreecommitdiff
path: root/tests/load.html
Commit message (Collapse)AuthorAgeFilesLines
* Use direct javascript in test filesPierre Ossman2019-07-031-37/+29
| | | | Avoid relying on our own modules as we are about to split things up.
* Remove last bits of Flash WebSocket emulationPierre Ossman2017-02-031-18/+0
| | | | We require native support from the browsers now.
* Remove Base64 supportPierre Ossman2017-02-011-1/+0
| | | | | This is an older protocol used before browsers got native support for Websockets.
* Refactor and add IETF-07 protocol version support.Joel Martin2011-05-011-21/+19
| | | | | | | | | | | | | | | | | | | | | | - Add initial IETF-07 (HyBi-07) protocol version support. This version still uses base64 encoding since the API for binary support is not yet finalized. - Move socket send and recieve functions into the WebSocketServer class instead of having the sub-class do this. This simplifies sub-classes somewhat. The send_frame routine now returns the number of frames that were unable to be sent. If this value is non-zero then the sub-class should call again when the socket is ready until the pending frames count is 0. - Do traffic reporting in the main class instead. - When the client is HyBi style (i.e. IETF-07) then use the sub-protocol header to select whether to do base64 encoding or simply send the frame data raw (binary). Update include/websock.js to send a 'base64' protocol selector. Once the API support binary, then the client will need to detect this and set the protocol to 'binary'.
* Add latency test and browser latency test results.Joel Martin2011-01-191-1/+1
|
* Strip "ws" from test names. Update TODO.Joel Martin2011-01-191-0/+252
Also, rename wstest to load.