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(0, () => { 141cb0ef41Sopenharmony_ci socket.connect(socket.address().port, common.mustCall(() => { 151cb0ef41Sopenharmony_ci socket.send(data); 161cb0ef41Sopenharmony_ci })); 171cb0ef41Sopenharmony_ci}); 18