(client, opts)
| 834 | you have all required information in opts object |
| 835 | */ |
| 836 | function buildBuilder (client, opts) { |
| 837 | var port, host; |
| 838 | opts.port = opts.port || 1883; |
| 839 | opts.hostname = opts.hostname || opts.host || 'localhost'; |
| 840 | |
| 841 | port = opts.port; |
| 842 | host = opts.hostname; |
| 843 | |
| 844 | return net.createConnection(port, host); |
| 845 | } |
| 846 | |
| 847 | module.exports = buildBuilder; |
| 848 |