Home
last modified time | relevance | path

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

/components/net/lwip/lwip-1.4.1/src/netif/ppp/
A Dppp_oe.c301 struct eth_hdr *ethhdr; in pppoe_dispatch_disc_pkt()
311 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_dispatch_disc_pkt()
639 struct eth_hdr *ethhdr; in pppoe_output()
648 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_output()
703 p = (u8_t*)pb->payload + sizeof (struct eth_hdr); in pppoe_send_padi()
919 p = (u8_t*)pb->payload + sizeof (struct eth_hdr); in pppoe_send_padr()
950 struct eth_hdr *ethhdr; in pppoe_send_padt()
960 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_send_padt()
998 p = (u8_t*)pb->payload + sizeof (struct eth_hdr); in pppoe_send_pado()
1035 p = (u8_t*)pb->payload + sizeof (struct eth_hdr); in pppoe_send_pads()
[all …]
/components/net/lwip/lwip-2.0.3/src/netif/
A Dethernet.c83 struct eth_hdr* ethhdr;
98 ethhdr = (struct eth_hdr *)p->payload;
268 struct eth_hdr* ethhdr;
294 ethhdr = (struct eth_hdr*)p->payload;
/components/net/lwip/lwip-2.1.2/src/netif/
A Dethernet.c83 struct eth_hdr *ethhdr;
104 ethhdr = (struct eth_hdr *)p->payload;
273 struct eth_hdr *ethhdr;
301 ethhdr = (struct eth_hdr *)p->payload;
/components/net/lwip/lwip-1.4.1/src/netif/
A Detharp.c417 struct eth_hdr *ethhdr = (struct eth_hdr *)p->payload; in etharp_send_ip()
641 struct eth_hdr *ethhdr;
648 ethhdr = (struct eth_hdr *)p->payload;
691 struct eth_hdr *ethhdr;
713 ethhdr = (struct eth_hdr *)p->payload;
890 if (pbuf_header(q, sizeof(struct eth_hdr)) != 0) {
925 sizeof(struct eth_hdr));
1183 struct eth_hdr *ethhdr;
1203 ethhdr = (struct eth_hdr *)p->payload;
1279 struct eth_hdr* ethhdr;
[all …]
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A Dpppoe.c390 struct eth_hdr *ethhdr; in pppoe_disc_input()
400 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_disc_input()
409 off = sizeof(struct eth_hdr) + sizeof(struct pppoehdr); in pppoe_disc_input()
664 if (pbuf_remove_header(pb, sizeof(struct eth_hdr)) != 0) { in pppoe_data_input()
723 struct eth_hdr *ethhdr; in pppoe_output()
728 if (pbuf_add_header(pb, sizeof(struct eth_hdr)) != 0) { in pppoe_output()
735 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_output()
777 sizeof(struct eth_hdr) + PPPOE_HEADERLEN + len <= 0xffff); in pppoe_send_padi()
1037 struct eth_hdr *ethhdr; in pppoe_send_padt()
1047 if (pbuf_add_header(pb, sizeof(struct eth_hdr))) { in pppoe_send_padt()
[all …]
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A Dpppoe.c389 struct eth_hdr *ethhdr; in pppoe_disc_input()
402 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_disc_input()
662 if (pbuf_header(pb, -(s16_t)sizeof(struct eth_hdr)) != 0) { in pppoe_data_input()
721 struct eth_hdr *ethhdr; in pppoe_output()
726 if (pbuf_header(pb, (s16_t)(sizeof(struct eth_hdr))) != 0) { in pppoe_output()
733 ethhdr = (struct eth_hdr *)pb->payload; in pppoe_output()
775 sizeof(struct eth_hdr) + PPPOE_HEADERLEN + len <= 0xffff); in pppoe_send_padi()
995 sizeof(struct eth_hdr) + PPPOE_HEADERLEN + len <= 0xffff); in pppoe_send_padr()
1032 struct eth_hdr *ethhdr; in pppoe_send_padt()
1042 pbuf_header(pb, (s16_t)sizeof(struct eth_hdr)); in pppoe_send_padt()
[all …]
/components/net/lwip/lwip-1.4.1/test/unit/etharp/
A Dtest_etharp.c78 struct eth_hdr *ethhdr; in create_arp_response()
80 …struct pbuf *p = pbuf_alloc(PBUF_RAW, sizeof(struct eth_hdr) + sizeof(struct etharp_hdr), PBUF_RAM… in create_arp_response()
84 ethhdr = (struct eth_hdr*)p->payload; in create_arp_response()
/components/net/lwip/lwip-2.0.3/test/unit/etharp/
A Dtest_etharp.c79 struct eth_hdr *ethhdr; in create_arp_response()
81 …struct pbuf *p = pbuf_alloc(PBUF_RAW, sizeof(struct eth_hdr) + sizeof(struct etharp_hdr), PBUF_RAM… in create_arp_response()
85 ethhdr = (struct eth_hdr*)p->payload; in create_arp_response()
/components/net/lwip/lwip-2.1.2/test/unit/etharp/
A Dtest_etharp.c80 struct eth_hdr *ethhdr; in create_arp_response()
82 …struct pbuf *p = pbuf_alloc(PBUF_RAW, sizeof(struct eth_hdr) + sizeof(struct etharp_hdr), PBUF_RAM… in create_arp_response()
86 ethhdr = (struct eth_hdr*)p->payload; in create_arp_response()
/components/net/lwip/lwip-2.1.2/src/include/lwip/prot/
A Dethernet.h76 struct eth_hdr { struct
/components/net/lwip/lwip-2.0.3/src/include/lwip/prot/
A Dethernet.h71 struct eth_hdr { struct
/components/net/lwip/lwip-1.4.1/src/include/netif/
A Dppp_oe.h186 #define PPPOE_HDRLEN (sizeof(struct eth_hdr) + PPPOE_HEADERLEN)
A Detharp.h72 struct eth_hdr { struct
/components/net/lwip-dhcpd/
A Ddhcp_server.c126 struct eth_hdr *ethhdr; in _low_level_dhcp_send()
136 ethhdr = (struct eth_hdr *)p->payload; in _low_level_dhcp_send()
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Dopt.h2552 #define LWIP_HOOK_VLAN_CHECK(netif, eth_hdr, vlan_hdr) argument
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Dopt.h3013 #define LWIP_HOOK_VLAN_CHECK(netif, eth_hdr, vlan_hdr) argument
/components/net/lwip-nat/
A Dipv4_nat.c97 #define LWIP_NAT_FORWARD_HEADER_SIZE_MIN (sizeof(struct eth_hdr))

Completed in 48 milliseconds