Skip to content

Commit

Permalink
dgram: sync the old handle state to new handle
Browse files Browse the repository at this point in the history
PR-URL: #46041
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
  • Loading branch information
theanarkh authored and juanarbol committed Jan 31, 2023
1 parent c8492b7 commit 8de6425
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/dgram.js
Expand Up @@ -184,7 +184,10 @@ function startListening(socket) {
function replaceHandle(self, newHandle) {
const state = self[kStateSymbol];
const oldHandle = state.handle;

// Sync the old handle state to new handle
if (!oldHandle.hasRef() && typeof newHandle.unref === 'function') {
newHandle.unref();
}
// Set up the handle that we got from primary.
newHandle.lookup = oldHandle.lookup;
newHandle.bind = oldHandle.bind;
Expand Down
23 changes: 23 additions & 0 deletions test/parallel/test-dgram-unref-in-cluster.js
@@ -0,0 +1,23 @@
'use strict';
const common = require('../common');
const dgram = require('dgram');
const cluster = require('cluster');
const assert = require('assert');

if (common.isWindows)
common.skip('dgram clustering is currently not supported on Windows.');

if (cluster.isPrimary) {
cluster.fork();
} else {
const socket = dgram.createSocket('udp4');
socket.unref();
socket.bind();
socket.on('listening', common.mustCall(() => {
const sockets = process.getActiveResourcesInfo().filter((item) => {
return item === 'UDPWrap';
});
assert.ok(sockets.length === 0);
process.disconnect();
}));
}

0 comments on commit 8de6425

Please sign in to comment.