Skip to content

Commit b8cdeda

Browse files
committed
MQTT: Actually use username/password
Parsed from MSGFLO_BROKER envvar
1 parent 08b6bba commit b8cdeda

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/mqtt_support.h

+4
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ class mqtt_client : public waitable, private mqtt_lib {
283283
}
284284

285285
public:
286+
int setUsernamePassword(std::string user, std::string pass) {
287+
return mosquitto_username_pw_set(mosquitto, user.c_str(), pass.c_str());
288+
}
289+
286290
int unacked_messages() {
287291
guard lock(this_mutex);
288292
return unacked_messages_;

src/msgflo.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -359,12 +359,15 @@ class MosquittoEngine final : public Engine, protected mqtt_event_listener, prot
359359

360360
public:
361361
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)
363363
: _debugOutput(config.debugOutput())
364364
, client(this, host, port, keep_alive, client_id, clean_session)
365365
, discoveryLastSent(0)
366366
, discoveryPeriod(config.discoveryPeriod/3)
367367
{
368+
if (user.size()) {
369+
client.setUsernamePassword(user, pw);
370+
}
368371
client.connect();
369372
}
370373

@@ -567,8 +570,7 @@ shared_ptr<Engine> createEngine(const EngineConfig config) {
567570
cout << "keep_alive: " << keep_alive << endl;
568571
cout << "clean_session: " << clean_session << endl;
569572
}
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);
572574
} else if (string_starts_with(url, "amqp://")) {
573575
return make_shared<AmqpEngine>(url, config);
574576
}

0 commit comments

Comments
 (0)