igmp.h, igmp.c, tcpip.c, init.c, netif.c: change igmp_init and add igmp_start. igmp_start is call inside netif_add. Now, igmp initialization is in the same spirit than the others modules. Modify some IGMP debug traces.

This commit is contained in:
fbernon
2007-08-29 21:12:32 +00:00
parent da7b5135de
commit cd208314e0
6 changed files with 71 additions and 31 deletions

View File

@@ -107,6 +107,8 @@ struct igmp_group {
/* Prototypes */
void igmp_init(void);
err_t igmp_start( struct netif *netif);
struct igmp_group *igmp_lookfor_group(struct netif *ifp, struct ip_addr *addr);
struct igmp_group *igmp_lookup_group(struct netif *ifp, struct ip_addr *addr);