Ting Zhu
Ting Zhu
Are there any plans to support the AUTH packet for enhanced authentication? If such plans are in motion, we'd love to know when users can expect this feature to become...
Does rumqttc support replay ack with a reason code?
According to the Mosquitto documentation, Mosquitto supports enhanced authentication through plugins. However, there is a lack of detailed information on how to configure it. I've attempted to use the plugin...
## Type of change New feature (non-breaking change which adds functionality) ## Checklist: - [x] Formatted with `cargo fmt` - [x] Make an entry to `CHANGELOG.md` if it's relevant to...
# Expected Behavior The outgoing puback event should occur after the incoming publish event. # Current Behavior The outgoing puback event is occurring before the incoming publish event. # Failure...
Here's a part of the code in the `readb` function of framed.rs: ```rust if let Some(outgoing) = state.handle_incoming_packet(packet)? { self.write(outgoing).await?; } ``` Assume the `outgoing` packet is an auto ack...