mqtt stuff added
This commit is contained in:
19
node_modules/mqtt/lib/connect/tcp.js
generated
vendored
Normal file
19
node_modules/mqtt/lib/connect/tcp.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
'use strict'
|
||||
var net = require('net')
|
||||
|
||||
/*
|
||||
variables port and host can be removed since
|
||||
you have all required information in opts object
|
||||
*/
|
||||
function buildBuilder (client, opts) {
|
||||
var port, host
|
||||
opts.port = opts.port || 1883
|
||||
opts.hostname = opts.hostname || opts.host || 'localhost'
|
||||
|
||||
port = opts.port
|
||||
host = opts.hostname
|
||||
|
||||
return net.createConnection(port, host)
|
||||
}
|
||||
|
||||
module.exports = buildBuilder
|
Reference in New Issue
Block a user