8000 update to lwIP-2.1.0: partial SACK support by default (de-selectable in menu) by d-a-v · Pull Request #5126 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

update to lwIP-2.1.0: partial SACK support by default (de-selectable in menu) #5126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
Oct 9, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f32ccfc
update to lwIP-2.1.0rc1: partial SACK support
d-a-v Sep 12, 2018
ed75b21
hash fix
d-a-v Sep 12, 2018
1337c27
get some flash back due to mistake in conf (fragmentation & reassembl…
d-a-v Sep 12, 2018
2e467db
Merge branch 'master' into lwip210
d-a-v Sep 12, 2018
a49db97
Merge branch 'master' into lwip210
d-a-v Sep 12, 2018
912b270
Merge branch 'master' into lwip210
devyte Sep 13, 2018
15b50e9
Merge branch 'master' into lwip210
devyte Sep 22, 2018
c3bb0b4
add missing include files
d-a-v Sep 24, 2018
a42e660
Merge branch 'master' into lwip210
devyte Sep 24, 2018
6df7944
Merge branch 'master' into lwip210
d-a-v Sep 26, 2018
a0921d8
update to lwip-2.1.0(release) + remove unused lwIP's include files
d-a-v Sep 26, 2018
5e19c94
Merge branch 'master' into lwip210
d-a-v Sep 26, 2018
2cae680
Merge branch 'master' into lwip210
d-a-v Sep 27, 2018
c4770bf
Merge branch 'lwip210' of github.com:d-a-v/Arduino into lwip210
d-a-v Sep 27, 2018
cc2a83c
lwIP release 2.1.0, SACK is now default, bigger, no-SACK is selectable
d-a-v Sep 27, 2018
d9ae175
fix ldscript
d-a-v Sep 27, 2018
438d6b1
Merge branch 'master' into lwip210
d-a-v Sep 28, 2018
1a87cd6
pio
d-a-v Sep 28, 2018
77edc1a
Merge branch 'master' into lwip210
d-a-v Sep 28, 2018
fe38d65
Merge branch 'master' into lwip210
d-a-v Sep 29, 2018
f088c19
Merge branch 'master' into lwip210
d-a-v Oct 1, 2018
561c3cb
Merge branch 'master' into lwip210
d-a-v Oct 2, 2018
02145e6
rename 'sack' option to 'feat'ure option, + IP fragmentation/reassembly
d-a-v Oct 2, 2018
b4b5264
Merge branch 'lwip210' of github.com:d-a-v/Arduino into lwip210
d-a-v Oct 2, 2018
10346a3
merge, fix pio
d-a-v Oct 2, 2018
fbd594a
change internal/hidden string
d-a-v Oct 2, 2018
c531733
Merge branch 'master' into lwip210
d-a-v Oct 4, 2018
f91cf58
Merge branch 'master' into lwip210
d-a-v Oct 5, 2018
60b3b2e
pio: more lwip2 configuration: + without sack for no change in flash …
d-a-v Oct 5, 2018
34f27cd
Merge branch 'master' into lwip210
d-a-v Oct 5, 2018
709d3f0
Merge branch 'master' into lwip210
devyte Oct 7, 2018
969d95c
Merge branch 'master' into lwip210
devyte Oct 9, 2018
c19d3b8
Merge branch 'master' into lwip210
devyte Oct 9, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
get some flash back due to mistake in conf (fragmentation & reassembl…
…y was incorrectly enabled)

(ahah I scared you)
  • Loading branch information
d-a-v committed Sep 12, 2018
commit 1337c27c9c6579f42ca783df80e4e8a2355a4f2c
Binary file modified tools/sdk/lib/liblwip2.a
Binary file not shown.
Binary file modified tools/sdk/lib/liblwip2_1460.a
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/sdk/lwip2/include/lwip-git-hash.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// generated by makefiles/make-lwip2-hash
#ifndef LWIP_HASH_H
#define LWIP_HASH_H
#define LWIP_HASH_STR "STABLE-2_1_0_RC1/glue:arduino-2.4.2-8-gcd0eeed"
#define LWIP_HASH_STR "STABLE-2_1_0_RC1/glue:arduino-2.4.2-10-g5965154"
#endif // LWIP_HASH_H
6 changes: 3 additions & 3 deletions tools/sdk/lwip2/include/lwipopts.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@
* not only for internal pools defined in memp_std.h)!
*/
#if !defined MEMP_MEM_MALLOC || defined __DOXYGEN__
#define MEMP_MEM_MALLOC 1
#define MEMP_MEM_MALLOC 1 // 0
#endif

/**
Expand Down Expand Up @@ -750,7 +750,7 @@
* via IP_FRAG.
*/
#if !defined IP_REASSEMBLY || defined __DOXYGEN__
#define IP_REASSEMBLY 1
#define IP_REASSEMBLY 0 // 1
#endif

/**
Expand All @@ -759,7 +759,7 @@
* controlled via IP_REASSEMBLY.
*/
#if !defined IP_FRAG || defined __DOXYGEN__
#define IP_FRAG 1
#define IP_FRAG 0 // 1
#endif

#if !LWIP_IPV4
Expand Down
33 changes: 0 additions & 33 deletions tools/sdk/lwip2/include/posix/errno.h

This file was deleted.

33 changes: 0 additions & 33 deletions tools/sdk/lwip2/include/posix/netdb.h

This file was deleted.

33 changes: 0 additions & 33 deletions tools/sdk/lwip2/include/posix/sys/socket.h

This file was deleted.

0