Fork for fixes
uitility/uipethernet-conf.h@0:5350a66d5279, 2014-09-15 (annotated)
- Committer:
- hudakz
- Date:
- Mon Sep 15 11:12:30 2014 +0000
- Revision:
- 0:5350a66d5279
rev. 00
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hudakz | 0:5350a66d5279 | 1 | #ifndef UIPETHERNET_CONF_H |
hudakz | 0:5350a66d5279 | 2 | #define UIPETHERNET_CONF_H |
hudakz | 0:5350a66d5279 | 3 | |
hudakz | 0:5350a66d5279 | 4 | /* for TCP */ |
hudakz | 0:5350a66d5279 | 5 | |
hudakz | 0:5350a66d5279 | 6 | #define UIP_SOCKET_NUMPACKETS 5 |
hudakz | 0:5350a66d5279 | 7 | #define UIP_CONF_MAX_CONNECTIONS 4 |
hudakz | 0:5350a66d5279 | 8 | |
hudakz | 0:5350a66d5279 | 9 | /* for UDP */ |
hudakz | 0:5350a66d5279 | 10 | |
hudakz | 0:5350a66d5279 | 11 | #define UIP_CONF_UDP 1 |
hudakz | 0:5350a66d5279 | 12 | #define UIP_CONF_BROADCAST 1 |
hudakz | 0:5350a66d5279 | 13 | #define UIP_CONF_UDP_CONNS 4 |
hudakz | 0:5350a66d5279 | 14 | #define UIP_UDP_NUMPACKETS 5 |
hudakz | 0:5350a66d5279 | 15 | |
hudakz | 0:5350a66d5279 | 16 | /* number of attempts on write before returning number of bytes sent so far |
hudakz | 0:5350a66d5279 | 17 | * set to -1 to block until connection is closed by timeout */ |
hudakz | 0:5350a66d5279 | 18 | |
hudakz | 0:5350a66d5279 | 19 | #define UIP_ATTEMPTS_ON_WRITE - 1 |
hudakz | 0:5350a66d5279 | 20 | #endif |