I wonder if it possible to start DNS server on ESP in STA mode. I found out some information about mDNS server. I tried to use the example:
Code: Select all
ESP_ERROR_CHECK(mdns_init());
ESP_ERROR_CHECK(mdns_hostname_set("name"));
I tried to search in ESP-IDF directory to find the right location of this function, but... I didn't find them at all! There are no files inside ESP-IDF directory which contains these functions. They are called in examples only.
So there is a question: where can I find these finctions?
I use official Espressif-IDE 2.11.1 with ESP-IDF 5.1.2, windows platform.