Removed reliance on the core/net/ipv4 module

This commit is contained in:
Adam Dunkels 2013-12-05 23:57:13 +01:00
parent 7a740b382f
commit 112e0d6855

View file

@ -66,7 +66,6 @@
*/
#include "uip.h"
#include "uip-fw.h"
#include "slipdev.h"
#include <string.h> /* For memcpy() */
@ -89,7 +88,7 @@ static uint8_t lastc;
* from the uip_buf buffer, and the following bytes (the application
* data) are read from the uip_appdata buffer.
*
* \return This function will always return UIP_FW_OK.
* \return This function will always return 0.
*/
/*-----------------------------------------------------------------------------------*/
uint8_t
@ -123,7 +122,7 @@ slipdev_send(void)
}
slipdev_char_put(SLIP_END);
return UIP_FW_OK;
return 0;
}
/*-----------------------------------------------------------------------------------*/
/**