Home
last modified time | relevance | path

Searched refs:basePacket (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/tests/net/java/android/net/apf/
DApfTest.java1069 ByteBuffer basePacket = ByteBuffer.wrap(new byte[ICMP6_RA_OPTION_OFFSET]); in testApfFilterRa() local
1070 basePacket.putShort(ETH_ETHERTYPE_OFFSET, (short)ETH_P_IPV6); in testApfFilterRa()
1071 basePacket.put(IPV6_NEXT_HEADER_OFFSET, (byte)IPPROTO_ICMPV6); in testApfFilterRa()
1072 basePacket.put(ICMP6_TYPE_OFFSET, (byte)ICMP6_ROUTER_ADVERTISEMENT); in testApfFilterRa()
1073 basePacket.putShort(ICMP6_RA_ROUTER_LIFETIME_OFFSET, (short)ROUTER_LIFETIME); in testApfFilterRa()
1074 basePacket.position(IPV6_DEST_ADDR_OFFSET); in testApfFilterRa()
1075 basePacket.put(IPV6_ALL_NODES_ADDRESS); in testApfFilterRa()
1076 assertPass(program, basePacket.array()); in testApfFilterRa()
1078 testRaLifetime(apfFilter, ipManagerCallback, basePacket, ROUTER_LIFETIME); in testApfFilterRa()
1085 basePacket.clear(); in testApfFilterRa()
[all …]