James Coglan
2be829546b
Bump version to 0.6.4.
0.6.4
2016-01-07 08:58:29 +00:00
James Coglan
7f3bb13b5c
In draft-75/76, convert all non-string values to strings before sending.
2016-01-06 23:20:47 +00:00
James Coglan
ffa0aa3a8f
Convert numbers to strings when sending frames.
...
In draft-75/76, passing a number to text() or frame() results in the
sender allocating a buffer of that size and sending it to the other
peer, leaking random blocks of memory.
In hybi, a call to text(), binary() or ping() with a number will fail,
because the input is expected to be a buffer and so an internal method
call fails.
Both kinds of driver now convert numbers to strings, which is what
browsers do with calls to send().
2016-01-06 23:12:44 +00:00
James Coglan
7c64c35c74
Create CODE_OF_CONDUCT.md.
2015-11-08 12:16:08 +00:00
James Coglan
10481b81db
Bump version to 0.6.3.
0.6.3
2015-11-06 22:16:36 +00:00
James Coglan
5b3c8131c4
Test on Node 5.
2015-11-05 21:22:37 +00:00
James Coglan
b0b0d69ce4
Throw a more helpful error if a client driver is created with an invalid URL.
2015-10-17 21:44:36 +01:00
James Coglan
3461e0187b
Run tests on major versions of iojs and node 4.
2015-10-17 12:58:10 +01:00
James Coglan
5b59d0fcd8
Use the modulo operator rather than Math.floor() to check whether the draft-76 keys are legit.
2015-10-02 21:35:22 +01:00
James Coglan
68990a260b
Close the connection if a draft-76 client sends a Sec-WebSocket-Key header where the numeric value is a non-integer multiple of the number of spaces.
2015-10-01 23:47:15 +01:00
James Coglan
fa8b82d424
Bump version to 0.6.2.
0.6.2
2015-07-18 17:40:03 +01:00
James Coglan
89e2a7da82
Emit a protocol error when a closing frame has a 1-byte payload.
2015-07-17 22:05:26 +01:00
James Coglan
70ef5440c4
Emit close code 1000 if the closing frame does not contain one.
2015-07-15 18:04:02 +01:00
James Coglan
c84cce9a1f
Bump version to 0.6.1.
0.6.1
2015-07-13 20:13:20 +01:00
James Coglan
c8e5f1eb78
A few stylistic tweaks.
2015-07-11 23:26:49 +01:00
James Coglan
eb5e39e7e3
Standardise the words used to refer to chunks of parser input.
2015-07-10 22:37:54 +01:00
James Coglan
a95f68080e
Use the buffer.{read,write}UInt{16,32}BE functions to parse and write numbers rather than implementing such things ourselves.
2015-07-10 20:01:44 +01:00
James Coglan
7a1cb15b8c
Bump version to 0.6.0.
0.6.0
2015-07-08 20:17:01 +01:00
James Coglan
14937dd365
Emit an error event *after* setting the ready state to 3.
2015-07-08 20:14:14 +01:00
James Coglan
780dd331fe
The 'connect' event should emit a ConnectEvent object.
2015-07-07 21:33:15 +01:00
James Coglan
4a3d51cc5b
Incorporate StreamReader into Draft75 so that it retains input and recovers safely from exceptions in event listeners.
2015-07-07 21:30:06 +01:00
James Coglan
ed17186354
In the Hybi driver, perform parser state changes before validating and emitting events. This protects the parser against errors thrown by event listeners.
2015-07-07 20:36:30 +01:00
James Coglan
1df1293456
Change stage in the Base.shutdown() method to that all parsers stop processing input.
2015-07-04 21:07:34 +01:00
James Coglan
d901d3e48d
If an event listener emits an error, close the connection with code 1011.
2015-07-04 20:54:22 +01:00
James Coglan
a49cd60cb7
Document that on() *adds* a callback, rather than *setting* one, i.e. it does not remove any prior callbacks.
2015-07-04 19:31:36 +01:00
James Coglan
4dd872f0ef
Add the pong() command to the documentation.
2015-07-04 18:50:55 +01:00
Victor Gama
90b8c9d23a
Add tests to others socket states
2015-07-04 18:34:00 +01:00
Victor Gama
c3ac50931e
Implement unit tests for pong method
2015-07-04 18:33:59 +01:00
Victor Gama
5f6873ebc0
Ensure message is always defined
2015-07-04 18:33:59 +01:00
Victor Gama
309b5651a7
Implement 'pong' command to hybi.js
2015-07-04 18:33:59 +01:00
James Coglan
1cc0f33e1c
Update the changelog for 0.5.4.
0.5.4
2015-03-29 23:13:10 +01:00
James Coglan
b273147f0c
Replace 'iff' with 'if and only if'.
2015-03-28 19:44:10 +00:00
James Coglan
d1796bef12
Use require('..') to import this module in examples.
2015-03-28 09:47:59 +00:00
James Coglan
0034f5fe19
Fail the connection when the server receives an invalid Sec-WebSocket-Extensions header.
2015-03-26 08:51:34 +00:00
James Coglan
09f638893e
Bump version to 0.5.4.
2015-03-12 12:59:53 +00:00
James Coglan
8a0235ef51
Don't send a close frame in response to receiving one, if we already sent a close frame.
2015-03-12 12:58:43 +00:00
James Coglan
2b99c23788
Bump version to 0.5.3.
0.5.3
2015-02-22 21:04:03 +00:00
James Coglan
23d0a9ea5e
Don't parse incoming data if the client is already closed. This stops the headers being interpreted as WebSocket data if the client is closed before receiving the server's handshake. Fixes https://github.com/faye/websocket-extensions-node/issues/1 .
2015-02-21 12:34:37 +00:00
James Coglan
0b7eedc3b5
Bump version to 0.5.2.
0.5.2
2015-02-19 09:42:57 +00:00
James Coglan
201e3dd7c5
Test on Node 0.12 and io.js.
2015-02-19 09:26:06 +00:00
James Coglan
8cf42d6050
Apply @zingaburga's StreamReader optimisations from https://github.com/faye/websocket-driver-node/issues/10 .
2015-02-16 20:07:40 +00:00
James Coglan
ebe4ce1382
Because Driver.frame() will now admit input when in readyState 2 (to allow for async extension shutdown), the Messages stream should use the text() and binary() methods that will block messages in that state.
2015-02-16 09:51:40 +00:00
James Coglan
daa37974c6
Don't emit further error/close events if the driver is already closing.
2015-02-16 09:08:10 +00:00
James Coglan
cc5e5c245e
Use Extensions.close(callback) to make sure close follows all pending messages.
...
viz.: https://github.com/faye/websocket-extensions-node/commit/1b77290e8279f654089eac963942309fb19b9312
2015-02-15 13:18:21 +00:00
James Coglan
bdc081ab57
Adapt to the changes to the HTTPParser API introduced in iojs.
2015-02-02 21:06:51 +00:00
James Coglan
57e74231cf
Bump version to 0.5.1.
0.5.1
2014-12-18 02:19:26 +00:00
James Coglan
5cba268409
Throw an error if drivers are created with unrecognised options.
2014-12-17 22:18:06 +00:00
James Coglan
e8992add23
Bump version to 0.5.0 and document how to add extensions.
0.5.0
2014-12-13 13:00:47 +00:00
James Coglan
23675e08ee
Don't expose the internal frame structure of messages to extensions; they should not be able to depend on seeing the actual frame boundaries off the wire because that requires all extensions to leave them intact.
2014-12-06 22:08:37 +00:00
James Coglan
66f46330e7
Remove some blank lines.
2014-12-05 19:36:06 +00:00