mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
PPP: set mtu6 too when setting PPP netif MTU
PPP peer can negotiate its MRU, therefore we don't know the MTU we are going to use before starting PPP. This is an issue because netif_add function assume that the netif init callback function will set the MTU, netif_add will then copy mtu to mtu6. We have then to update mtu6 each time we update mtu to keep them in sync. Doing so is fine because PPP netif MTU is only updated when the netif is in link down state.
This commit is contained in:
parent
a39ce0f53b
commit
e801307738
@ -1323,6 +1323,9 @@ int sifnpmode(ppp_pcb *pcb, int proto, enum NPmode mode) {
|
||||
void ppp_netif_set_mtu(ppp_pcb *pcb, int mtu) {
|
||||
|
||||
pcb->netif->mtu = mtu;
|
||||
#if PPP_IPV6_SUPPORT && LWIP_ND6_ALLOW_RA_UPDATES
|
||||
pcb->netif->mtu6 = mtu;
|
||||
#endif /* PPP_IPV6_SUPPORT && LWIP_ND6_ALLOW_RA_UPDATES */
|
||||
PPPDEBUG(LOG_INFO, ("ppp_netif_set_mtu[%d]: mtu=%d\n", pcb->netif->num, mtu));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user