mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/60761 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
34 lines
723 B
JavaScript
34 lines
723 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(handle);
|
|
|
|
const N = 100;
|
|
const buf = Buffer.alloc(2, 'a');
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
const conn = net.connect(this.address().port);
|
|
|
|
conn.on('connect', common.mustCall(() => {
|
|
let res = true;
|
|
let i = 0;
|
|
for (; i < N && res; i++) {
|
|
conn.cork();
|
|
conn.write(buf);
|
|
res = conn.write(buf);
|
|
conn.uncork();
|
|
}
|
|
assert.strictEqual(i, N);
|
|
conn.end();
|
|
}));
|
|
}));
|
|
|
|
function handle(socket) {
|
|
socket.resume();
|
|
socket.on('error', common.mustNotCall())
|
|
.on('close', common.mustCall(() => server.close()));
|
|
}
|