mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-12-05 08:39:27 +01:00
25 lines
441 B
C
25 lines
441 B
C
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
#include "mdns_private.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Perform action from mdns service queue
|
||
|
|
*
|
||
|
|
* @note Called from the _mdns_service_task() in mdns.c
|
||
|
|
*/
|
||
|
|
void mdns_priv_receive_action(mdns_action_t *action, mdns_action_subtype_t type);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|