mbed OS5

Fork of UIPEthernet by Zoltan Hudak

Committer:
hudakz
Date:
Thu Nov 20 21:26:54 2014 +0000
Revision:
1:01c2344f98a3
Parent:
uitility/uipethernet-conf.h@0:5350a66d5279
rev. 01

Who changed what in which revision?

UserRevisionLine numberNew 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