Initial commit
This commit is contained in:
24
node_modules/mqtt/build/lib/connect/tcp.js
generated
vendored
Executable file
24
node_modules/mqtt/build/lib/connect/tcp.js
generated
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const net_1 = __importDefault(require("net"));
|
||||
const debug_1 = __importDefault(require("debug"));
|
||||
const socks_1 = __importDefault(require("./socks"));
|
||||
const debug = (0, debug_1.default)('mqttjs:tcp');
|
||||
const buildStream = (client, opts) => {
|
||||
opts.port = opts.port || 1883;
|
||||
opts.hostname = opts.hostname || opts.host || 'localhost';
|
||||
if (opts.socksProxy) {
|
||||
return (0, socks_1.default)(opts.hostname, opts.port, opts.socksProxy, {
|
||||
timeout: opts.socksTimeout,
|
||||
});
|
||||
}
|
||||
const { port, path } = opts;
|
||||
const host = opts.hostname;
|
||||
debug('port %d and host %s', port, host);
|
||||
return net_1.default.createConnection({ port, host, path });
|
||||
};
|
||||
exports.default = buildStream;
|
||||
//# sourceMappingURL=tcp.js.map
|
||||
Reference in New Issue
Block a user