Searched refs:checkMtu (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tests/net/java/android/net/dhcp/
H A DDhcpPacketTest.java537 private void checkMtu(ByteBuffer packet, int expectedMtu, byte[] mtuBytes) throws Exception { method in class:DhcpPacketTest
573 checkMtu(packet, 0, null);
574 checkMtu(packet, 0, mtuBytes(1501));
575 checkMtu(packet, 1500, mtuBytes(1500));
576 checkMtu(packet, 1499, mtuBytes(1499));
577 checkMtu(packet, 1280, mtuBytes(1280));
578 checkMtu(packet, 0, mtuBytes(1279));
579 checkMtu(packet, 0, mtuBytes(576));
580 checkMtu(packet, 0, mtuBytes(68));
581 checkMtu(packe
[all...]

Completed in 185 milliseconds