aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2025-07-21 01:18:34 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2025-07-21 01:43:26 +0100
commit427f6ee9996529e13fc7df3db9970bc10ca24e55 (patch)
treeea6f77767ca1291d9bb2131287864305a98a43b1 /README.md
parent309b7ca314502ed86920bc7423e19979e9187a5d (diff)
downloadmqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.tar.gz
mqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.tar.xz
mqttr-427f6ee9996529e13fc7df3db9970bc10ca24e55.zip
TLS and Unix socket support
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 03ef930..5685f12 100644
--- a/README.md
+++ b/README.md
@@ -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