Fork for fixes
Diff: utility/uipethernet-conf.h
- Revision:
- 3:5b17e4656dd0
- Child:
- 4:d774541a34da
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utility/uipethernet-conf.h Sat Dec 20 11:10:40 2014 +0000 @@ -0,0 +1,20 @@ +#ifndef UIPETHERNET_CONF_H + #define UIPETHERNET_CONF_H + +/* for TCP */ + + #define UIP_SOCKET_NUMPACKETS 5 + #define UIP_CONF_MAX_CONNECTIONS 4 + +/* for UDP */ + + #define UIP_CONF_UDP 1 + #define UIP_CONF_BROADCAST 1 + #define UIP_CONF_UDP_CONNS 4 + #define UIP_UDP_NUMPACKETS 5 + +/* number of attempts on write before returning number of bytes sent so far + * set to -1 to block until connection is closed by timeout */ + + #define UIP_ATTEMPTS_ON_WRITE - 1 +#endif