From 4e2260c74c92b8b6b6637c0268f292a7226096ca Mon Sep 17 00:00:00 2001 From: jani Date: Mon, 3 May 2004 09:42:58 +0000 Subject: [PATCH] by default there's no eth padding to preserve preious beahviour --- src/include/netif/etharp.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/netif/etharp.h b/src/include/netif/etharp.h index 5a9977ab..b9ffed57 100644 --- a/src/include/netif/etharp.h +++ b/src/include/netif/etharp.h @@ -35,7 +35,9 @@ #ifndef __NETIF_ETHARP_H__ #define __NETIF_ETHARP_H__ -#define PAD_ETH_SIZE 2 +#ifndef PAD_ETH_SIZE +#define PAD_ETH_SIZE 0 +#endif #include "lwip/pbuf.h" #include "lwip/ip_addr.h"