Compare commits

...

10 Commits

Author SHA1 Message Date
Dirk Ziegelmeier
e5071daf45 Add MQTT to CHANGELOG (too late for 2.0.1 release...) 2017-01-10 10:42:25 +01:00
Dirk Ziegelmeier
980b219c28 Put 2.0.1 version tag in UPGRADING document 2017-01-10 10:42:23 +01:00
Erik Ekman
76b4365aaa Remove duplicate netif_dhcp_data() macro
Fix compilation of unit tests
2017-01-10 10:42:22 +01:00
Dirk Ziegelmeier
a5a4830b16 Set lwIP version to 2.0.1 RELEASE 2017-01-05 15:02:10 +01:00
Dirk Ziegelmeier
1a2a9a4e96 Merge branch 'master' into STABLE-2_0_0
# Conflicts:
#	src/include/lwip/init.h
2017-01-05 15:01:08 +01:00
Dirk Ziegelmeier
216bf89491 Set version to 2.0.0 release 2016-11-10 09:46:31 +01:00
Dirk Ziegelmeier
a68eddbd47 Merge branch 'master' into STABLE-2_0_0 2016-11-10 09:44:33 +01:00
goldsimon
fd096a5769 Set LWIP_VERSION_RC to RC2 2016-08-03 09:12:23 +02:00
goldsimon
15b75555a6 Merge branch 'master' into STABLE-2_0_0 2016-08-03 08:59:09 +02:00
sg
33955c636d Set LWIP_VERSION_RC to RC1 2016-04-27 22:04:51 +02:00
4 changed files with 6 additions and 3 deletions

View File

@@ -10,6 +10,9 @@ HISTORY
* tcp.h/.c: added function tcp_listen_with_backlog_and_err() to get the error
reason when listening fails (bug #49861)
2016-12-20: Erik Andersen
* Add MQTT client
2016-12-14: Jan Breuer:
* opt.h, ndc.h/.c: add support for RDNSS option (as per RFC 6106)

View File

@@ -8,6 +8,8 @@ with newer versions.
* [Enter new changes just after this line - do not remove this line]
(2.0.1)
++ Application changes:
* UDP does NOT receive multicast traffic from ALL netifs on an UDP PCB bound to a specific

View File

@@ -58,7 +58,7 @@ extern "C" {
/** For release candidates, this is set to 1..254
* For official releases, this is set to 255 (LWIP_RC_RELEASE)
* For development versions (Git), this is set to 0 (LWIP_RC_DEVELOPMENT) */
#define LWIP_VERSION_RC LWIP_RC_DEVELOPMENT
#define LWIP_VERSION_RC LWIP_RC_RELEASE
/** LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases */
#define LWIP_RC_RELEASE 255

View File

@@ -127,8 +127,6 @@ static enum tcase {
static int debug = 0;
static void setdebug(int a) {debug = a;}
#define netif_dhcp_data(netif) ((struct dhcp*)(netif)->client_data[LWIP_NETIF_CLIENT_DATA_INDEX_DHCP])
static int tick = 0;
static void tick_lwip(void)
{