quartiq / minimq

Minimal no_std MQTT v5.0 client implementation
MIT License
143 stars 16 forks source link

Respect message rate limiting (send quotas) #135

Closed ryan-summers closed 1 year ago

ryan-summers commented 1 year ago

MQTT requires that the client and server respect the "Receive Maximum" for each other by establishing a "send quota" for each network connection. We should track and manage this send quota properly to not violate the receive maximum.

ryan-summers commented 1 year ago

Fixed in https://github.com/quartiq/minimq/pull/130