Updated lwIP patch to support improved shutdown semantics, updated ZT1 submodule reference

This commit is contained in:
Joseph Henry
2019-01-14 15:49:00 -08:00
parent 4e0c00aaff
commit 270fc76b25
3 changed files with 163 additions and 1 deletions

View File

@@ -586,6 +586,11 @@ happening sooner than they should.
-------------------------------- TCP Options -----------------------------------
------------------------------------------------------------------------------*/
/**
* TCP_SYNMAXRTX: Maximum number of retransmissions of SYN segments.
*/
#define TCP_SYNMAXRTX 12
/**
* LWIP_TCP==1: Turn on TCP.
*/
@@ -623,6 +628,22 @@ happening sooner than they should.
#define LWIP_SOCKET 1//(NO_SYS==0)
/**
* LWIP_SO_SNDTIMEO==1: Enable send timeout for sockets/netconns and
* SO_SNDTIMEO processing.
*/
#define LWIP_SO_SNDTIMEO 1
/**
* LWIP_SO_RCVTIMEO==1: Enable receive timeout for sockets/netconns and
* SO_RCVTIMEO processing.
*/
#define LWIP_SO_RCVTIMEO 1
/**
* LWIP_SO_RCVBUF==1: Enable SO_RCVBUF processing.
*/
#define LWIP_SO_RCVBUF 1
/*------------------------------------------------------------------------------
------------------------------ Statistics Options ------------------------------