Move netif_mdns_data() and get_mdns_pcb() to mdns_priv.h

This commit is contained in:
Dirk Ziegelmeier 2018-11-13 12:22:24 +01:00
parent 2adc6d2687
commit d386388fb5
2 changed files with 3 additions and 3 deletions

View File

@ -97,9 +97,6 @@ void mdns_resp_announce(struct netif *netif);
*/
#define mdns_resp_netif_settings_changed(netif) mdns_resp_announce(netif)
struct mdns_host* netif_mdns_data(struct netif *netif);
struct udp_pcb* get_mdns_pcb(void);
#endif /* LWIP_MDNS_RESPONDER */
#ifdef __cplusplus

View File

@ -196,6 +196,9 @@ struct mdns_host {
#endif
};
struct mdns_host* netif_mdns_data(struct netif *netif);
struct udp_pcb* get_mdns_pcb(void);
#endif /* LWIP_MDNS_RESPONDER */
#ifdef __cplusplus