@@ -359,12 +359,15 @@ class MosquittoEngine final : public Engine, protected mqtt_event_listener, prot
359
359
360
360
public:
361
361
MosquittoEngine (const EngineConfig config, const string &host, const int port,
362
- const int keep_alive, const string &client_id, const bool clean_session)
362
+ const int keep_alive, const string &client_id, const bool clean_session, const std::string &user, const std::string &pw )
363
363
: _debugOutput(config.debugOutput())
364
364
, client(this , host, port, keep_alive, client_id, clean_session)
365
365
, discoveryLastSent(0 )
366
366
, discoveryPeriod(config.discoveryPeriod/3 )
367
367
{
368
+ if (user.size ()) {
369
+ client.setUsernamePassword (user, pw);
370
+ }
368
371
client.connect ();
369
372
}
370
373
@@ -567,8 +570,7 @@ shared_ptr<Engine> createEngine(const EngineConfig config) {
567
570
cout << " keep_alive: " << keep_alive << endl;
568
571
cout << " clean_session: " << clean_session << endl;
569
572
}
570
-
571
- return make_shared<MosquittoEngine>(config, host, port, keep_alive, client_id, clean_session);
573
+ return make_shared<MosquittoEngine>(config, host, port, keep_alive, client_id, clean_session, username, password);
572
574
} else if (string_starts_with (url, " amqp://" )) {
573
575
return make_shared<AmqpEngine>(url, config);
574
576
}
0 commit comments