mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:25:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const dgram = require('dgram');
|
|
|
|
// should not hang, see #1282
|
|
dgram.createSocket('udp4');
|
|
dgram.createSocket('udp6');
|