Lines Matching full:packet
73 * @param p the received packet, p->payload pointing to the ethernet header
74 * @param netif the network interface on which the packet was received
92 /* a packet with only an ethernet header (or less) is not valid for us */
103 /* points to packet payload, which starts with an Ethernet header */
119 /* a packet with only an ethernet/vlan header (or less) is not valid for us */
133 /* silently ignore this packet: not for our VLAN */
147 /* this might be a multicast or broadcast packet */
172 /* IP packet? */
180 ("ethernet_input: IPv4 packet dropped, too short (%"U16_F"/%"U16_F")\n",
182 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("Can't move over header in packet"));
197 ("ethernet_input: ARP response packet dropped, too short (%"U16_F"/%"U16_F")\n",
199 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("Can't move over header in packet"));
224 ("ethernet_input: IPv6 packet dropped, too short (%"U16_F"/%"U16_F")\n",
257 * Send an ethernet packet on the network using netif->linkoutput().
262 * @param netif the lwIP network interface on which to send the packet
263 * @param p the packet to send. pbuf layer must be @ref PBUF_LINK.
267 * @return ERR_OK if the packet was sent, any other err_t on failure
309 ("ethernet_output: sending packet %p\n", (void *)p));
311 /* send the packet */