Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: christmasLights device_server pop3demo device_server_udp ... more
Diff: if/eth/EthernetNetIf.cpp
- Revision:
- 1:9d93f4dc2f46
- Parent:
- 0:8b387bed54c2
diff -r 8b387bed54c2 -r 9d93f4dc2f46 if/eth/EthernetNetIf.cpp
--- a/if/eth/EthernetNetIf.cpp Mon Jan 10 21:03:11 2011 +0000
+++ b/if/eth/EthernetNetIf.cpp Wed Jul 18 20:28:43 2012 +0000
@@ -63,7 +63,9 @@
{
if(m_pNetIf)
{
+#if LWIP_IGMP
igmp_stop(m_pNetIf); //Stop IGMP processing
+#endif
netif_set_down(m_pNetIf);
netif_remove(m_pNetIf);
delete m_pNetIf;
@@ -78,7 +80,9 @@
{
if (m_setup)
{
+#if LWIP_IGMP
igmp_stop(m_pNetIf);
+#endif
netif_set_down(m_pNetIf);
netif_remove(m_pNetIf);
delete m_pNetIf;