mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
'use strict';
|
|
require('../common');
|
|
const http = require('http');
|
|
const net = require('net');
|
|
|
|
var once = false;
|
|
var first = null;
|
|
var second = null;
|
|
|
|
const chunk = Buffer.alloc(1024, 'X');
|
|
|
|
var size = 0;
|
|
|
|
var more;
|
|
var done;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
if (!once)
|
|
server.close();
|
|
once = true;
|
|
|
|
if (first === null) {
|
|
first = res;
|
|
return;
|
|
}
|
|
if (second === null) {
|
|
second = res;
|
|
res.write(chunk);
|
|
} else {
|
|
res.end(chunk);
|
|
}
|
|
size += res.outputSize;
|
|
if (size <= req.socket._writableState.highWaterMark) {
|
|
more();
|
|
return;
|
|
}
|
|
done();
|
|
}).on('upgrade', function(req, socket) {
|
|
second.end(chunk, function() {
|
|
socket.end();
|
|
});
|
|
first.end('hello');
|
|
}).listen(0, function() {
|
|
var s = net.connect(this.address().port);
|
|
more = function() {
|
|
s.write('GET / HTTP/1.1\r\n\r\n');
|
|
};
|
|
done = function() {
|
|
s.write('GET / HTTP/1.1\r\n\r\n' +
|
|
'GET / HTTP/1.1\r\nConnection: upgrade\r\nUpgrade: ws\r\n\r\naaa');
|
|
};
|
|
more();
|
|
more();
|
|
s.resume();
|
|
});
|
|
|