Make 0 the default link-layer header length, as far as uIP is concerned. Most currently used linke layers (specifically, 802.15.4) has adaptation layers that use separate buffers, so there is no need to reserve space in the uIP buffer.

This commit is contained in:
Adam Dunkels 2013-12-12 22:20:09 +01:00
parent c7e0fa7152
commit c0b3c87ba7

View file

@ -157,7 +157,7 @@
#ifdef UIP_CONF_LLH_LEN
#define UIP_LLH_LEN (UIP_CONF_LLH_LEN)
#else /* UIP_LLH_LEN */
#define UIP_LLH_LEN 14
#define UIP_LLH_LEN 0
#endif /* UIP_CONF_LLH_LEN */
/**