11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst dgram = require('dgram'); 51cb0ef41Sopenharmony_ciconst socket = dgram.createSocket('udp4'); 61cb0ef41Sopenharmony_ciconst data = ['foo', 'bar', 'baz']; 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_cisocket.on('message', common.mustCall((msg, rinfo) => { 91cb0ef41Sopenharmony_ci socket.close(); 101cb0ef41Sopenharmony_ci assert.deepStrictEqual(msg.toString(), data.join('')); 111cb0ef41Sopenharmony_ci})); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_cisocket.bind(() => socket.send(data, socket.address().port, 'localhost')); 14