Skip to content

Commit ad147e9

Browse files
committed
Added in the changes for the server in connection.
1 parent e830940 commit ad147e9

File tree

1 file changed

+30
-12
lines changed

1 file changed

+30
-12
lines changed

Connection.js

+30-12
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,28 @@
66
// parent can be a Server or, in case of client connection, a string with the path to connect to
77
// callback will be added as a listener to "connect"
88
// Events: close(code, reason), error(err), text(str), binary(inStream), connect()
9-
function Connection(socket, url, callback) {
9+
function Connection(socket, parentOrUrl, callback) {
1010
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+
}
1122

12-
this.host = url.host
23+
// this.host = url.host
1324
this.socket = socket
14-
this.server = typeof url.path == "string" ? null : url.path
25+
// this.server = typeof url.path == "string" ? null : url.path
1526
this.readyState = this.CONNECTING
1627
this.buffer = "" // string before handshake, Buffer after that
1728
this.frameBuffer = null // string for text frames and InStream for binary frames
1829
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
2031
this.key = null // the Sec-WebSocket-Key header
2132

2233
// Set listeners
@@ -26,9 +37,10 @@ function Connection(socket, url, callback) {
2637
socket.on("error", function (err) {
2738
that.emit("error", err)
2839
})
29-
if (!this.server)
40+
if (!this.server) {
3041
that.startHandshake()
31-
42+
}
43+
3244
// Close listeners
3345
var onclose = function () {
3446
if (that.readyState == that.CONNECTING || that.readyState == that.OPEN)
@@ -58,6 +70,7 @@ var crypto = require("crypto")
5870
var InStream = require("./InStream.js")
5971
var OutStream = require("./OutStream.js")
6072
var frame = require("./frame.js")
73+
var Server = require("./Server.js")
6174

6275
// Minimum size of a pack of binary data to send in a single frame
6376
Connection.binaryFragmentation = 512*1024 // .5 MiB
@@ -129,36 +142,41 @@ Connection.prototype.doRead = function () {
129142

130143
// Fetches the data
131144
buffer = this.socket.read()
132-
if (!buffer)
145+
if (!buffer) {
133146
// Waits for more data
134147
return
148+
}
135149

136150
if (this.readyState == this.CONNECTING) {
137151
// Do the handshake and try to connect
138152
this.buffer += buffer.toString()
139-
if (this.buffer.length > Connection.maxBufferLength)
153+
if (this.buffer.length > Connection.maxBufferLength) {
140154
// Too big for a handshake
141155
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") {
143158
// Wait for more data
144159
return
160+
}
145161
temp = this.buffer.split("\r\n")
146162
if (this.server ? this.answerHandshake(temp) : this.checkHandshake(temp)) {
147163
this.buffer = new Buffer(0)
148164
this.readyState = this.OPEN
149165
this.emit("connect")
150-
} else
166+
} else {
151167
this.socket.end(this.server ? "HTTP/1.1 400 Bad Request\r\n\r\n" : undefined)
168+
}
152169
} else if (this.readyState != this.CLOSED) {
153170
// Save to the internal buffer and try to read as many frames as possible
154171
this.buffer = Buffer.concat([this.buffer, buffer], this.buffer.length+buffer.length)
155172
while ((temp=this.extractFrame()) === true);
156-
if (temp === false)
173+
if (temp === false) {
157174
// Protocol error
158175
this.close(1002)
159-
else if (this.buffer.length > Connection.maxBufferLength)
176+
} else if (this.buffer.length > Connection.maxBufferLength) {
160177
// Frame too big
161178
this.close(1009)
179+
}
162180
}
163181
}
164182

0 commit comments

Comments
 (0)