esp_netif_t*sta_netif=esp_netif_create_default_wifi_sta();ESP_ERROR_CHECK(esp_netif_set_hostname(sta_netif,"custom")); and it's not working. Using ESP-IDF v5.3.2 (ESP_OK,esp_netif_set_hostname(esp_netif,"new_name")); TEST_ASSERT_EQUAL(ESP_OK,esp_netif_get_hostname(esp_netif...
I'm trying to set the hostname for the ethernet interface. But `esp_netif_set_hostname()` always returns `ESP_ERR_ESP_NETIF_IF_NOT_READY`. `esp_netif_get_hostname()` also always only returns `ESP_ERR_ESP_NETIF_IF_NOT_READY`. I've checked the source code of these functions and ...