export UdpSocket as Socket, enabling the use of dgram.Socket
This commit is contained in:
parent
d3e3016318
commit
485883eaa4
|
@ -6,10 +6,10 @@
|
|||
|
||||
var UdpSocket = require('./UdpSocket.ios')
|
||||
|
||||
module.exports = {
|
||||
createSocket: function(type) {
|
||||
return new UdpSocket({
|
||||
type: type
|
||||
})
|
||||
}
|
||||
}
|
||||
exports.createSocket = function(type) {
|
||||
return new UdpSocket({
|
||||
type: type
|
||||
})
|
||||
}
|
||||
|
||||
exports.Socket = UdpSocket;
|
||||
|
|
Loading…
Reference in New Issue