Skip to content

Commit 82e2a5d

Browse files
0xjakobsuren-gabrielyan-espressif
authored andcommitted
mdns: added missing includes
* Original commit: espressif/esp-idf@28d09c7
1 parent 48e4d40 commit 82e2a5d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

components/mdns/mdns.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
#include "mdns_private.h"
99
#include "mdns_networking.h"
1010
#include "esp_log.h"
11+
#include "freertos/FreeRTOS.h"
12+
#include "freertos/task.h"
13+
#include "freertos/queue.h"
14+
#include "freertos/semphr.h"
1115
#include <string.h>
1216
#include <sys/param.h>
1317

components/mdns/private_include/mdns_private.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
#include "sdkconfig.h"
1010
#include "mdns.h"
1111
#include "esp_task.h"
12+
#include "freertos/FreeRTOS.h"
13+
#include "freertos/task.h"
14+
#include "freertos/queue.h"
15+
#include "freertos/semphr.h"
1216
#include "esp_timer.h"
1317

1418
//#define MDNS_ENABLE_DEBUG

0 commit comments

Comments
 (0)