AsyncTCP icon indicating copy to clipboard operation
AsyncTCP copied to clipboard

Async TCP Library for ESP32

Results 49 AsyncTCP issues
Sort by recently updated
recently updated
newest added

Exposes LWIP functionality to enable TCP keepalives. Provides methods in AsyncClient to read and set keepalive configuration. Implements and resolves https://github.com/me-no-dev/AsyncTCP/issues/114

I started implementing the server side TLS support. I used the implementation provided by @tve https://github.com/me-no-dev/AsyncTCP/pull/48 It is not finished yet! Currently the first request can successfully be made with...

Bump version to prepare a release tag in preparation for inclusion into Arduino IDE library manager.

There seems to be a bug in Platformio in handling the dependencies that are present in platform packages but not available in the Platformio Registry. In this particular case it's...

Hi! This is my attempt at adding a proper IPv6 support. `bind` part was pretty simple but the `connect` one was a little bit trickier. I've ran the standard test...

Hey, I've added support for TLS using mbed TLS. It's only for the client side, but for most this is probably enough. You can enable it by setting the ASYNC_TCP_SSL_ENABLED...

Also referring back to https://github.com/espressif/arduino-esp32/pull/4131. TCP task priority ought to be configurable, especially with UDP task priority defaulting to the same value. A user may want to take a choice...

I had issues when sending a lot of frames from the ESP32 camera and the culprit turned out to be the queue size. This PR adds a way for user...

@me-no-dev Is there any chance that this library will be published under a permissive license (e.g. Apache, MIT, MPL)? Currently, I can unfortunately not publish the code I am writing...