extmod/network_wiznet5k: Reset mDNS when interface is brought up.

The LwIP interface is removed in wiznet5k_deinit() which is called as part
of the init sequence.  Therefore, if using mDNS, then the interface will
need to be re-added when bringing the interface up.

Additionally, this allows to set the hostname from MicroPython code prior
to bringing the interface up and mDNS responding to the (new) hostname.
This allows the hostname to be configured and saved on the flash or be
based on dynamic information such as the MAC or unique_id().

Signed-off-by: Jared Hancock <jared.hancock@centeredsolutions.com>
This commit is contained in:
Jared Hancock 2024-10-14 09:19:10 -05:00 committed by Damien George
parent 3f54e5dff2
commit 078ead24f3

View File

@ -58,6 +58,7 @@
#include "shared/netutils/netutils.h"
#include "lib/wiznet5k/Ethernet/wizchip_conf.h"
#include "lib/wiznet5k/Ethernet/socket.h"
#include "lwip/apps/mdns.h"
#include "lwip/err.h"
#include "lwip/dns.h"
#include "lwip/dhcp.h"
@ -201,6 +202,9 @@ static void wiznet5k_config_interrupt(bool enabled) {
void wiznet5k_deinit(void) {
for (struct netif *netif = netif_list; netif != NULL; netif = netif->next) {
if (netif == &wiznet5k_obj.netif) {
#if LWIP_MDNS_RESPONDER
mdns_resp_remove_netif(&wiznet5k_obj.netif);
#endif
netif_remove(netif);
netif->flags = 0;
break;
@ -334,6 +338,12 @@ static void wiznet5k_lwip_init(wiznet5k_obj_t *self) {
self->netif.flags |= NETIF_FLAG_UP;
dhcp_start(&self->netif);
self->netif.flags &= ~NETIF_FLAG_UP;
#if LWIP_MDNS_RESPONDER
// NOTE: interface is removed in ::wiznet5k_deinit(), which is called as
// part of the init sequence.
mdns_resp_add_netif(&self->netif, mod_network_hostname_data);
#endif
}
void wiznet5k_poll(void) {