diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-07-21 01:18:34 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-07-21 01:43:26 +0100 |
commit | 427f6ee9996529e13fc7df3db9970bc10ca24e55 (patch) | |
tree | ea6f77767ca1291d9bb2131287864305a98a43b1 /README.md | |
parent | 309b7ca314502ed86920bc7423e19979e9187a5d (diff) | |
download | mqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.tar.gz mqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.tar.xz mqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.zip |
TLS and Unix socket support
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,6 +36,7 @@ minimum a set of routes. The following is the default configuration: ```toml host = "localhost" # MQTT server host port = 1883 # MQTT server port +transport = "tcp" # The transport protocol, (tcp, tls or unix) qos = "exactly-once" # Default subscription QoS # at-least-once (=0), at-most-once (=1), exactly-once (=2) timeout = 10.5 # Timeout in seconds (0 means (effectively) no timeout) @@ -92,7 +93,6 @@ it being ran every time a new MQTT message is published to this topic. ## Missing Features -* TLS * mTLS * Graceful signal handling * Graceful program stdout/stderr handling |