()
| 4 | const dgram = require('dgram'); |
| 5 | |
| 6 | function test() { |
| 7 | const socket1 = dgram.createSocket(options); |
| 8 | const socket2 = dgram.createSocket(options); |
| 9 | socket1.bind(0, common.mustCall(() => { |
| 10 | socket2.bind(socket1.address().port, common.mustCall(() => { |
| 11 | socket1.close(); |
| 12 | socket2.close(); |
| 13 | })); |
| 14 | })); |
| 15 | } |
| 16 | |
| 17 | checkSupportReusePort().then(test, () => { |
| 18 | common.skip('The `reusePort` option is not supported'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…