Skip to content

Commit

Permalink
fix(mdns): Cleanup includes in mdns.c
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cermak committed Jan 10, 2025
1 parent 5eddc9c commit 77532f9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions components/mdns/mdns.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@
*/

#include <string.h>
#include <sys/param.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#include "freertos/semphr.h"
#include "esp_log.h"
#include "esp_event.h"
#include "esp_random.h"
#include "esp_check.h"
#include "mdns.h"
#include "mdns_private.h"
#include "mdns_networking.h"
#include "esp_log.h"
#include "esp_random.h"
#include "esp_check.h"

static void _mdns_browse_item_free(mdns_browse_t *browse);
static esp_err_t _mdns_send_browse_action(mdns_action_type_t type, mdns_browse_t *browse);
Expand Down

0 comments on commit 77532f9

Please sign in to comment.