forked from theturtle32/WebSocket-Node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecho-server.js
More file actions
executable file
·86 lines (78 loc) · 3.03 KB
/
Copy pathecho-server.js
File metadata and controls
executable file
·86 lines (78 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env node
/************************************************************************
* Copyright 2010-2015 Brian McKelvey.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
***********************************************************************/
var WebSocketServer = require('../../lib/WebSocketServer');
var http = require('http');
var args = { /* defaults */
port: '8080',
debug: false
};
/* Parse command line options */
var pattern = /^--(.*?)(?:=(.*))?$/;
process.argv.forEach(function(value) {
var match = pattern.exec(value);
if (match) {
args[match[1]] = match[2] ? match[2] : true;
}
});
var port = parseInt(args.port, 10);
var debug = args.debug;
console.log('WebSocket-Node: echo-server');
console.log('Usage: ./echo-server.js [--port=8080] [--debug]');
var server = http.createServer(function(request, response) {
if (debug) { console.log((new Date()) + ' Received request for ' + request.url); }
response.writeHead(404);
response.end();
});
server.listen(port, function() {
console.log((new Date()) + ' Server is listening on port ' + port);
});
var wsServer = new WebSocketServer({
httpServer: server,
autoAcceptConnections: true,
maxReceivedFrameSize: 64*1024*1024, // 64MiB
maxReceivedMessageSize: 64*1024*1024, // 64MiB
fragmentOutgoingMessages: false,
keepalive: false,
disableNagleAlgorithm: false
});
wsServer.on('connect', function(connection) {
if (debug) { console.log((new Date()) + ' Connection accepted' +
' - Protocol Version ' + connection.webSocketVersion); }
function sendCallback(err) {
if (err) {
console.error('send() error: ' + err);
connection.drop();
setTimeout(function() {
process.exit(100);
}, 100);
}
}
connection.on('message', function(message) {
if (message.type === 'utf8') {
if (debug) { console.log('Received utf-8 message of ' + message.utf8Data.length + ' characters.'); }
connection.sendUTF(message.utf8Data, sendCallback);
}
else if (message.type === 'binary') {
if (debug) { console.log('Received Binary Message of ' + message.binaryData.length + ' bytes'); }
connection.sendBytes(message.binaryData, sendCallback);
}
});
connection.on('close', function(reasonCode, description) {
if (debug) { console.log((new Date()) + ' Peer ' + connection.remoteAddress + ' disconnected.'); }
connection._debug.printOutput();
});
});