Home
last modified time | relevance | path

Searched refs:udpSocket (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/amp/test/
A Dtest_udp.js20 var udpSocket = udp.createSocket(); variable
22 if(!udpSocket || !udpSocket.bind || !udpSocket.send || !udpSocket.close || !udpSocket.on) {
29 udpSocket.on('message', function(message, rinfo) {
39 udpSocket.close();
53 udpSocket.on('error', function(err) {
60 udpSocket.send({
80 udpSocket.bind(10240);
81 if(!udpSocket.localPort || typeof udpSocket.localPort !== 'number') {
/AliOS-Things-master/components/amp/example-js/
A Dudp.js3 var udpSocket = udp.createSocket(); variable
14 udpSocket.on('message', function(data, rinfo) {
20 udpSocket.on('close', function() {
24 udpSocket.on('error', function(err) {
29 udpSocket.send({
41 udpSocket.bind();

Completed in 3 milliseconds