This repository was archived by the owner on Mar 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket_server.js
67 lines (54 loc) · 1.78 KB
/
socket_server.js
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
var tls = require('tls'),
fs = require('fs'),
https = require('https'),
ws = require('ws');
// ssl/tls
exports.options = {
key: fs.readFileSync('server-key.pem'),
cert: fs.readFileSync('server-cert.pem'),
NPNProtocols: ['10bit', '10bit-gzip', 'http/1.1']
};
// tcp server
exports.tcp = tls.createServer(exports.options, function (stream) {
if (!stream.npnProtocol)
stream.npnProtocol = '10bit';
var handler = exports.handler(stream, function (d) { stream.write(d + '\n'); });
var buffer = '', idx;
stream.on('data', function (data) {
buffer += data;
while ((idx = buffer.indexOf('\n')) >= 0) {
handler(buffer.substring(0, idx));
buffer = buffer.substring(idx + 1);
}
}).setEncoding('utf8');
});
// web server
exports.web = https.createServer(exports.options, function (req, res) {
console.log(req,req.method,req.url);
res.writeHead(200);
res.end("All glory to WebSockets!\n");
});
// websocket server
exports.wss = new (ws.Server)({server: exports.web});
exports.wss.on('connection', function (wsc) {
if (!wsc._socket.npnProtocol)
wsc._socket.npnProtocol = 'http/1.1';
wsc._socket.wsc = wsc;
var handler = exports.handler(wsc._socket, function (d) { wsc.send(d); });
wsc.on('message', handler);
});
exports.listen = function () {
exports.tcp.listen(10817, function () {
console.log('Listening on port 10817 (tcp)');
});
exports.web.listen(10818, function () {
console.log('Listening on port 10818 (web)');
});
};
// error handling
exports.tcp.on('clientError', function (ex, securePair) {
console.log('Client error occured during SSL negotiation:', ex.message);
});
exports.web.on('clientError', function (ex, socket) {
console.log('Client error occured in HTTP server:', ex.message);
});