Fork for fixes
Diff: utility/uipethernet-conf.h
- Revision:
- 1:01c2344f98a3
- Parent:
- 0:5350a66d5279
diff -r 5350a66d5279 -r 01c2344f98a3 utility/uipethernet-conf.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utility/uipethernet-conf.h Thu Nov 20 21:26:54 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