We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be7aaa commit 40612fbCopy full SHA for 40612fb
rumqttd/CHANGELOG.md
@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
- record client id for remote link's span
28
- session present flag in connack
29
- Make write method return the number of bytes written correctly everywhere
30
+- `ConnectionSettings` can be manually created
31
32
### Security
33
- Implement constant-time password comparison in authentication logic
rumqttd/src/lib.rs
@@ -149,7 +149,7 @@ pub struct ConnectionSettings {
149
pub max_inflight_count: usize,
150
pub auth: Option<HashMap<String, String>>,
151
#[serde(skip)]
152
- external_auth: Option<AuthHandler>,
+ pub external_auth: Option<AuthHandler>,
153
#[serde(default)]
154
pub dynamic_filters: bool,
155
}
0 commit comments