2015-05-09 21:55:49 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-10 14:26:29 +00:00
|
|
|
* @providesModule UdpSockets
|
2015-05-09 21:55:49 +00:00
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
|
2015-09-24 23:10:24 +00:00
|
|
|
var UdpSocket = require('./UdpSocket');
|
2015-05-09 21:55:49 +00:00
|
|
|
|
2016-11-07 22:53:58 +00:00
|
|
|
exports.createSocket = function(options) {
|
|
|
|
if (typeof options === 'string') options = { type: options }
|
|
|
|
return new UdpSocket(options)
|
2015-06-15 20:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.Socket = UdpSocket;
|