From 82e2a5dcc1a3015b50556ba3ca89a4c2d7935825 Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Wed, 16 Feb 2022 16:43:04 +0800 Subject: [PATCH] mdns: added missing includes * Original commit: espressif/esp-idf@28d09c7dbe145ffa6a7dd90531062d4f7669a9c8 --- components/mdns/mdns.c | 4 ++++ components/mdns/private_include/mdns_private.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/components/mdns/mdns.c b/components/mdns/mdns.c index 66b62fba8..20c9a4505 100644 --- a/components/mdns/mdns.c +++ b/components/mdns/mdns.c @@ -8,6 +8,10 @@ #include "mdns_private.h" #include "mdns_networking.h" #include "esp_log.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "freertos/semphr.h" #include #include diff --git a/components/mdns/private_include/mdns_private.h b/components/mdns/private_include/mdns_private.h index 92a0efaa6..44535747f 100644 --- a/components/mdns/private_include/mdns_private.h +++ b/components/mdns/private_include/mdns_private.h @@ -9,6 +9,10 @@ #include "sdkconfig.h" #include "mdns.h" #include "esp_task.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "freertos/semphr.h" #include "esp_timer.h" //#define MDNS_ENABLE_DEBUG