Searched refs:pktType (Results 1 – 1 of 1) sorted by relevance
/packages/modules/NetworkStack/src/android/net/dhcp/ |
D | DhcpPacket.java | 906 static DhcpPacket decodeFullPacket(ByteBuffer packet, int pktType, byte[] optionsToSkip) in decodeFullPacket() argument 952 if (pktType == ENCAP_L2) { in decodeFullPacket() 972 if (pktType <= ENCAP_L3) { in decodeFullPacket() 1032 if (pktType > ENCAP_BOOTP || packet.remaining() < MIN_PACKET_LENGTH_BOOTP) { in decodeFullPacket() 1306 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType, in decodeFullPacket() argument 1310 return decodeFullPacket(buffer, pktType, optionsToSkip); in decodeFullPacket() 1321 public static DhcpPacket decodeFullPacket(byte[] packet, int length, int pktType) in decodeFullPacket() argument 1323 return decodeFullPacket(packet, length, pktType, new byte[0]); in decodeFullPacket()
|