mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-18 20:10:53 +00:00
Minor. Add LWIP_NETIF_HOSTNAME in skeleton and comment on #endif for LWIP_SNMP.
This commit is contained in:
parent
c1fe7517ec
commit
d301b69dae
@ -301,6 +301,11 @@ ethernetif_init(struct netif *netif)
|
|||||||
return ERR_MEM;
|
return ERR_MEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if LWIP_NETIF_HOSTNAME
|
||||||
|
/* Initialize interface hostname */
|
||||||
|
netif->hostname = "lwip";
|
||||||
|
#endif /* LWIP_NETIF_HOSTNAME */
|
||||||
|
|
||||||
#if LWIP_SNMP
|
#if LWIP_SNMP
|
||||||
/* ifType ethernetCsmacd(6) @see RFC1213 */
|
/* ifType ethernetCsmacd(6) @see RFC1213 */
|
||||||
netif->link_type = 6;
|
netif->link_type = 6;
|
||||||
@ -315,7 +320,7 @@ ethernetif_init(struct netif *netif)
|
|||||||
netif->ifoutucastpkts = 0;
|
netif->ifoutucastpkts = 0;
|
||||||
netif->ifoutnucastpkts = 0;
|
netif->ifoutnucastpkts = 0;
|
||||||
netif->ifoutdiscards = 0;
|
netif->ifoutdiscards = 0;
|
||||||
#endif
|
#endif /* LWIP_SNMP */
|
||||||
|
|
||||||
netif->state = ethernetif;
|
netif->state = ethernetif;
|
||||||
netif->name[0] = IFNAME0;
|
netif->name[0] = IFNAME0;
|
||||||
|
Loading…
Reference in New Issue
Block a user