6
6
// parent can be a Server or, in case of client connection, a string with the path to connect to
7
7
// callback will be added as a listener to "connect"
8
8
// Events: close(code, reason), error(err), text(str), binary(inStream), connect()
9
- function Connection ( socket , url , callback ) {
9
+ function Connection ( socket , parentOrUrl , callback ) {
10
10
var that = this
11
+
12
+ if ( parentOrUrl instanceof Server ) {
13
+ // Server-side connection
14
+ this . server = parentOrUrl
15
+ this . path = null
16
+ } else {
17
+ // Client-side
18
+ this . host = parentOrUrl . host
19
+ this . server = null
20
+ this . path = parentOrUrl . path
21
+ }
11
22
12
- this . host = url . host
23
+ // this.host = url.host
13
24
this . socket = socket
14
- this . server = typeof url . path == "string" ? null : url . path
25
+ // this.server = typeof url.path == "string" ? null : url.path
15
26
this . readyState = this . CONNECTING
16
27
this . buffer = "" // string before handshake, Buffer after that
17
28
this . frameBuffer = null // string for text frames and InStream for binary frames
18
29
this . outStream = null // current allocated OutStream object for sending binary frames
19
- this . path = typeof url . path == "string" ? url . path : null
30
+ // this.path = typeof url.path == "string" ? url.path : null
20
31
this . key = null // the Sec-WebSocket-Key header
21
32
22
33
// Set listeners
@@ -26,9 +37,10 @@ function Connection(socket, url, callback) {
26
37
socket . on ( "error" , function ( err ) {
27
38
that . emit ( "error" , err )
28
39
} )
29
- if ( ! this . server )
40
+ if ( ! this . server ) {
30
41
that . startHandshake ( )
31
-
42
+ }
43
+
32
44
// Close listeners
33
45
var onclose = function ( ) {
34
46
if ( that . readyState == that . CONNECTING || that . readyState == that . OPEN )
@@ -58,6 +70,7 @@ var crypto = require("crypto")
58
70
var InStream = require ( "./InStream.js" )
59
71
var OutStream = require ( "./OutStream.js" )
60
72
var frame = require ( "./frame.js" )
73
+ var Server = require ( "./Server.js" )
61
74
62
75
// Minimum size of a pack of binary data to send in a single frame
63
76
Connection . binaryFragmentation = 512 * 1024 // .5 MiB
@@ -129,36 +142,41 @@ Connection.prototype.doRead = function () {
129
142
130
143
// Fetches the data
131
144
buffer = this . socket . read ( )
132
- if ( ! buffer )
145
+ if ( ! buffer ) {
133
146
// Waits for more data
134
147
return
148
+ }
135
149
136
150
if ( this . readyState == this . CONNECTING ) {
137
151
// Do the handshake and try to connect
138
152
this . buffer += buffer . toString ( )
139
- if ( this . buffer . length > Connection . maxBufferLength )
153
+ if ( this . buffer . length > Connection . maxBufferLength ) {
140
154
// Too big for a handshake
141
155
return this . socket . end ( this . server ? "HTTP/1.1 400 Bad Request\r\n\r\n" : undefined )
142
- if ( this . buffer . substr ( - 4 ) != "\r\n\r\n" )
156
+ }
157
+ if ( this . buffer . substr ( - 4 ) != "\r\n\r\n" ) {
143
158
// Wait for more data
144
159
return
160
+ }
145
161
temp = this . buffer . split ( "\r\n" )
146
162
if ( this . server ? this . answerHandshake ( temp ) : this . checkHandshake ( temp ) ) {
147
163
this . buffer = new Buffer ( 0 )
148
164
this . readyState = this . OPEN
149
165
this . emit ( "connect" )
150
- } else
166
+ } else {
151
167
this . socket . end ( this . server ? "HTTP/1.1 400 Bad Request\r\n\r\n" : undefined )
168
+ }
152
169
} else if ( this . readyState != this . CLOSED ) {
153
170
// Save to the internal buffer and try to read as many frames as possible
154
171
this . buffer = Buffer . concat ( [ this . buffer , buffer ] , this . buffer . length + buffer . length )
155
172
while ( ( temp = this . extractFrame ( ) ) === true ) ;
156
- if ( temp === false )
173
+ if ( temp === false ) {
157
174
// Protocol error
158
175
this . close ( 1002 )
159
- else if ( this . buffer . length > Connection . maxBufferLength )
176
+ } else if ( this . buffer . length > Connection . maxBufferLength ) {
160
177
// Frame too big
161
178
this . close ( 1009 )
179
+ }
162
180
}
163
181
}
164
182
0 commit comments