-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rumqttc is a pure Rust MQTT client implementation, where paho-mqtt depends on the Paho C library (which depends on OpenSSL). This simplifies the build as we no longer have to static compile OpenSSL and link against it. It also reduces the binary size by ~ 50%.
- Loading branch information
Showing
17 changed files
with
578 additions
and
661 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
listener 1883 | ||
allow_anonymous true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
!.github | ||
!.vscode | ||
!.env | ||
!.docker-compose/ | ||
|
||
# Config files | ||
/chirpstack-mqtt-forwarder.toml | ||
|
Oops, something went wrong.