Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixes#6887

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
d-a-v merged 24 commits intoesp8266:masterfromd-a-v:nosubsub
Feb 18, 2020

Conversation

@d-a-v
Copy link
Collaborator

@d-a-vd-a-v commentedDec 7, 2019
edited
Loading

  • upstream lwIP is not sub-sub-moduled anymore (a lightgit clone with proper ref is used instead)
  • Allows IPv4 and IPv6 DNS and SNTP server configured via DHCP to co-exist (patch against upstream)

fixes#6832

edit - other lwip2 submodule updates:

(updated 20-02-17 ) About backlog limitation,WiFiServer.h:

// lwIP-v2 backlog facility allows to keep memory safe by limiting the// maximum number of incoming *pending clients*.  Default number of possibly// simultaneously pending clients is defined in WiFiServer.cpp// (MAX_PENDING_CLIENTS_PER_PORT=5).  User can overide it at runtime from// sketch://      WiFiServer::begin(port, max-simultaneous-pending-clients);//// An "incoming pending" client is a new incoming TCP connection trying to// reach the TCP server.  It is "pending" until lwIP acknowledges it and// "accepted / no more pending" when user calls WiFiServer::available().//// Before the backlog feature or with lwIP-v1.4, there was no pending// connections: They were immediately accepted and filling RAM.//// Several pending clients can appear during the time when one client is// served by a long not-async service like ESP8266WebServer.  During that// time WiFiServer::available() cannot be called.//// Note: This *does not limit* the number of *simultaneously accepted//       clients*.  Such limit management is left to the user.//// Thus, when the maximum number of pending connections is reached, new// connections are delayed.// By "delayed", it is meant that WiFiServer(lwIP) will not answer to the// SYN packet until there is room for a new one: The TCP server on that port// will be mute.  The TCP client will regularly try to connect until success// or a timeout occurs (72s on windows).//// When user calls WiFiServer::available(), the tcp server stops muting and// answers to newcomers (until the "backlog" pending list is full again).

lwip2: Allow IPv4 and IPv6 DNS and SNTP server configured via DHCP to co-exist (patch against upstream)
- enable more efficient chksum algorithm thanks to Richard Allen- enable tcp listener with backlog
@d-a-vd-a-v changed the titlelwip2: remove git sub-sub-module dependency on external repositorylwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationJan 23, 2020
@d-a-vd-a-v added this to the2.7.0 milestoneJan 23, 2020
@d-a-vd-a-v self-assigned thisJan 24, 2020
@d-a-vd-a-v changed the titlelwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation(WIP) lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationFeb 5, 2020
@d-a-vd-a-v changed the title(WIP) lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationBREAKING lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationFeb 5, 2020
@d-a-vd-a-v changed the titleBREAKING lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation(WIP) BREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationFeb 5, 2020
@d-a-vd-a-v changed the title(WIP) BREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationBREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationFeb 5, 2020
@d-a-vd-a-v changed the titleBREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitationBREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixesFeb 5, 2020
because one must not believe it can be redefined before including WiFiServer.h
@d-a-vd-a-v changed the titleBREAKING: lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixes(WIP) lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixesFeb 6, 2020
@d-a-vd-a-v changed the title(WIP) lwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixeslwip2 updates: no more git sub-sub-module deps, faster checksum, backlog limitation and other fixesFeb 17, 2020
@devytedevyte self-requested a reviewFebruary 17, 2020 17:53
@d-a-vd-a-v merged commite752e96 intoesp8266:masterFeb 18, 2020
@d-a-vd-a-v deleted the nosubsub branchFebruary 18, 2020 05:55
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@devytedevytedevyte approved these changes

+1 more reviewer

@TD-erTD-erTD-er left review comments

Reviewers whose approvals may not affect merge requirements

Assignees

@d-a-vd-a-v

Labels

None yet

Projects

None yet

Milestone

2.7.0

3 participants

@d-a-v@TD-er@devyte

[8]ページ先頭

©2009-2025 Movatter.jp