OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ETH_P_IP
(Results
51 - 65
of
65
) sorted by null
1
2
3
/external/iproute2/include/linux/
if_ether.h
45
#define
ETH_P_IP
0x0800 /* Internet Protocol packet */
/libcore/luni/src/main/java/libcore/net/
RawSocket.java
38
public static final short
ETH_P_IP
= (short) 0x0800;
/system/core/libnetutils/
packet.c
47
if((s = socket(PF_PACKET, SOCK_DGRAM, htons(
ETH_P_IP
))) < 0) {
53
bindaddr.sll_protocol = htons(
ETH_P_IP
);
141
destaddr.sll_protocol = htons(
ETH_P_IP
);
/external/kernel-headers/original/linux/
if_ether.h
45
#define
ETH_P_IP
0x0800 /* Internet Protocol packet */
/external/iproute2/lib/
ll_proto.c
84
{
ETH_P_IP
, "ipv4" },
/frameworks/base/core/java/android/net/arp/
ArpPeer.java
94
buf.putShort(RawSocket.
ETH_P_IP
); // Protocol type IP, 16 bits
/external/qemu/slirp/
slirp.c
567
#define
ETH_P_IP
0x0800 /* Internet Protocol packet */
629
rah->ar_pro = htons(
ETH_P_IP
);
665
case
ETH_P_IP
:
711
rah->ar_pro = htons(
ETH_P_IP
);
731
eh->h_proto = htons(
ETH_P_IP
);
/external/android-clat/
translate.c
109
* proto - ethernet protocol id:
ETH_P_IP
(ipv4) or ETH_P_IPV6(ipv6)
504
if(ntohs(tun_header->proto) ==
ETH_P_IP
) {
510
fill_tun_header(&tun_targ,
ETH_P_IP
);
/external/qemu/slirp-android/
slirp.c
656
#define
ETH_P_IP
0x0800 /* Internet Protocol packet */
722
rah->ar_pro = htons(
ETH_P_IP
);
758
case
ETH_P_IP
:
804
rah->ar_pro = htons(
ETH_P_IP
);
824
eh->h_proto = htons(
ETH_P_IP
);
[
all
...]
/external/iproute2/misc/
arpd.c
212
ah->ar_pro = htons(
ETH_P_IP
);
507
a->ar_pro != htons(
ETH_P_IP
) ||
/external/iputils/
arping.c
282
ah->ar_pro = htons(
ETH_P_IP
);
402
if (ah->ar_pro != htons(
ETH_P_IP
))
rarpd.c
474
if (a->ar_pro != htons(
ETH_P_IP
)) {
/external/bluetooth/bluedroid/btif/src/
btif_pan.c
484
if(ntohs(hdr->h_proto) ==
ETH_P_IP
|| ntohs(hdr->h_proto) == ETH_P_ARP)
/external/iputils/Modules/
pg3.c
284
skb->protocol = __constant_htons(
ETH_P_IP
);
/external/iproute2/tc/
f_u32.c
952
{
ETH_P_IP
, 0, print_ipv4},
Completed in 460 milliseconds
1
2
3