ESPAsyncDNSServer icon indicating copy to clipboard operation
ESPAsyncDNSServer copied to clipboard

Asynchronous DNS Server for the ESP

Results 3 ESPAsyncDNSServer issues
Sort by recently updated
recently updated
newest added

Updates versions and fixes `platforms` array to correctly reflect ESP8266 **and** ESP32 support. (`espressif` is an extremely old way of writing `espressif8266` in PlatformIO). See [docs](https://docs.platformio.org/en/latest/manifests/library-json/fields/platforms.html) and [code](https://github.com/platformio/platformio-core/blob/029e66cd06a5048d53cea8cde2f2d949be063b44/platformio/package/manifest/parser.py#L365-L370). After that...

Currently ESPAsyncDNSServer includes [ESPAsyncUDP](https://github.com/me-no-dev/ESPAsyncUDP) with `#include `. However, AsyncUDP [is natively included](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP) in arduino-esp32 [since 2018](https://github.com/espressif/arduino-esp32/commit/a59eafbc9dfa3ce818c110f996eebf68d755be24) and can be included in Arduino ESP32 projects with `#include ` only. Currently, this...

When trying to debug some code with 'dig' I noticed that the code would return a SERVFAIL (or other configured error code) because of the EDNS in the additional section....