Skip to content
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

ESP8266WebServer - Drop inactive connection when another is waiting to improve page load time #8216

Merged
merged 3 commits into from
Oct 27, 2021

Commits on Jul 23, 2021

  1. ESP8266WebServer - drop current HC_WAIT_READ connection sooner when a…

    …nother has data
    
    Safari sometimes opens two connections when loading a page and only
    sends a request over the second one, resulting in a 5 second wait
    (HTTP_MAX_DATA_WAIT) before the request is processed. This commit
    drops the current connection after 30ms (HTTP_MAX_DATA_AVAILABLE_WAIT)
    when there is a new connection with data available or the buffer of
    pending TCP clients is full (currently 5).
    aWZHY0yQH81uOYvH committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    e56cd84 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2021

  1. Configuration menu
    Copy the full SHA
    74be226 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. add missing mocking methods

    d-a-v authored and aWZHY0yQH81uOYvH committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    6988f4f View commit details
    Browse the repository at this point in the history