Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7c21cc6 authored by Jack Yu's avatar Jack Yu Committed by Automerger Merge Worker
Browse files

Merge "Check InetAddress Type When Adding Route MTU" into rvc-dev am:...

Merge "Check InetAddress Type When Adding Route MTU" into rvc-dev am: ac2a494b am: dbe2cbcd am: 3eebf60d

Change-Id: Ib0e018a93b2cf03d1ad90a3c2b08cecb879aab35
parents 51d273b0 3eebf60d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1531,7 +1531,7 @@ public class DataConnection extends StateMachine {
                }
                }


                for (InetAddress gateway : response.getGatewayAddresses()) {
                for (InetAddress gateway : response.getGatewayAddresses()) {
                    int mtu = linkProperties.hasGlobalIpv6Address() ? response.getMtuV6()
                    int mtu = gateway instanceof java.net.Inet6Address ? response.getMtuV6() 
                            : response.getMtuV4();
                            : response.getMtuV4();
                    // Allow 0.0.0.0 or :: as a gateway;
                    // Allow 0.0.0.0 or :: as a gateway;
                    // this indicates a point-to-point interface.
                    // this indicates a point-to-point interface.