Bert Melis
Bert Melis
Fixes onAck not firing after ungraceful disconnect with unacked data left. See issue https://github.com/me-no-dev/ESPAsyncTCP/issues/160
All callbacks are stored in std::vectors. So multiple callbacks for the same events are possible. I have not had the need to attahc multiple callbacks however. And even then, if...
I don't know if it's doable but I'd like to check whether it is possible to replace the async tcp libs with the regular WiFiClient builtin libs. Async has one...
I'd like to propose a breaking change: make the topic in the onMessage callback `const`. Under the hood the topic is indeed a `char*` but the end user shouldn't change...
A lot of users seem to have problems to handle MQTT payloads. I was thinking to create a separate file with some helper classes. I'm reluctant to implement this behaviour...
Add helpers to deal with large payloads or non-zero-terminated strings https://github.com/marvinroger/async-mqtt-client/issues/234
**Description** I have a matcher to check the contents of a byte array. In the matcher's "describe" method, the output is preceded by the value under test. In case of...
## Description of Change - changed `int WiFiClient::fd() const` to `virtual int WiFiClient::fd() const` - created `int WiFiClientSecure::fd() const` - removed `setSocketOption`, `getSocketOption` from `WiFiClientSecure` to deduplicate the code. `setSocketOption`,...
### Core version latest master (checkout manually) ### Issue https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/src/WiFiClient.h#L89 `setSocketOption` isn't virtual so when calling for a `WiFiClientSecure` object through a `WiFiClient` pointer, you'll get an error. This happens...