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
90 /* a packet with only an ethernet header (or less) is not valid for us */
97 /* points to packet payload, which starts with an Ethernet header */
112 /* a packet with only an ethernet/vlan header (or less) is not valid for us */
126 /* silently ignore this packet: not for our VLAN */
141 /* this might be a multicast or broadcast packet */
166 /* IP packet? */
174 ("ethernet_input: IPv4 packet dropped, too short (%"S16_F"/%"S16_F")\n",
176 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("Can't move over header in packet"));
191 ("ethernet_input: ARP response packet dropped, too short (%"S16_F"/%"S16_F")\n",
193 LWIP_DEBUGF(ETHARP_DEBUG | LWIP_DBG_TRACE, ("Can't move over header in packet"));
218 ("ethernet_input: IPv6 packet dropped, too short (%"S16_F"/%"S16_F")\n",
251 * Send an ethernet packet on the network using netif->linkoutput().
256 * @param netif the lwIP network interface on which to send the packet
257 * @param p the packet to send. pbuf layer must be @ref PBUF_LINK.
261 * @return ERR_OK if the packet was sent, any other err_t on failure
302 ("ethernet_output: sending packet %p\n", (void *)p));
304 /* send the packet */