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

Use a windows specific keepalive function. #1104

Merged
merged 2 commits into from
Sep 3, 2022
Merged

Commits on Sep 2, 2022

  1. Use a windows specific keepalive function.

    While it is possible to toggle `TCP_KEEPALIVE` in windows via
    setsockopt, you have to use `WSAIoctl` to set the interval.
    
    Since `WSAIoctl` can actually do all of this in one call (toggle the
    option, and set the corresponding interval), just use that in Windows
    and avoid the call to `setsockopt` alltogether.
    
    See: #1100
    michael-grunder committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    e377906 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2022

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