8000 Added close_abort() function to WiFiClient by pfabri · Pull Request #2767 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Added close_abort() function to WiFiClient #2767

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

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
d-a-v authored Jan 9, 2020
commit cc140484913a99ff2d6116a56c75d0e127f48b44
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/src/include/ClientContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ClientContext
return close(false, true);
}

err_t close_abort(bool force_abort = false)
err_t close_abort()
{
return close(true, true);
}
Expand Down
0