blob: 7363f757f2b6576c1edfcbc115b51e05c34e53e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
'use strict';
const common = require('../common');
const http = require('http');
const server = http.createServer(function(req, res) {
res.writeHead(200);
res.end();
server.close();
});
server.listen(common.PORT, function() {
const req = http.request({
method: 'POST',
port: common.PORT
});
const payload = Buffer.alloc(16390, 'Й');
req.write(payload);
req.end();
});
|