Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-negotiate MQTT version, rather than using a #define. #119

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Weicocu
Copy link

@Weicocu Weicocu commented Mar 29, 2018

A few changes in Adafruit_MQTT.h and .cpp that allow connecting to any MQTT broker without knowing in advance what protocol version it uses.

The original used a hard-coded
#define MQTT_PROTOCOL_LEVEL
of either 3 or 4 to distinguish between the two protocol versions. In this version, mqtt_protocol_level is a member variable, and the protocol version is determined in the same (kludgy) way that Paho does it -- try to connect with it set to 4, then switch to 3 if that fails.

But this should be transparent to the calling code, aside from taking a tiny bit longer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant