Allow to actually configure active open support via UIP_CONF_ACTIVE_OPEN.
Is there any reason I don't understand why this wasn't allowed? At least it seems to work...
This commit is contained in:
parent
2bcabc061d
commit
3b95e284fc
1 changed files with 5 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
|||
*
|
||||
* This file is part of the uIP TCP/IP stack.
|
||||
*
|
||||
* $Id: uipopt.h,v 1.4 2007/04/11 00:29:12 oliverschmidt Exp $
|
||||
* $Id: uipopt.h,v 1.5 2007/12/08 23:04:34 oliverschmidt Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -240,7 +240,11 @@
|
|||
*
|
||||
* \hideinitializer
|
||||
*/
|
||||
#ifndef UIP_CONF_ACTIVE_OPEN
|
||||
#define UIP_ACTIVE_OPEN 1
|
||||
#else /* UIP_CONF_ACTIVE_OPEN */
|
||||
#define UIP_ACTIVE_OPEN UIP_CONF_ACTIVE_OPEN
|
||||
#endif /* UIP_CONF_ACTIVE_OPEN */
|
||||
|
||||
/**
|
||||
* The maximum number of simultaneously open TCP connections.
|
||||
|
|
Loading…
Reference in a new issue