-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
sendfile with TLS/SSL transport #512
Labels
Comments
Good catch! Please make a PR. |
jashandeep-sohi
added a commit
to jashandeep-sohi/aiohttp
that referenced
this issue
Sep 18, 2015
asvetlov
added a commit
that referenced
this issue
Sep 19, 2015
Fix issue #512: force sendfile fallback when using SSL.
Fixed |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I was thinking about TLS/SSL today, and just realised that the current implementation doesn't take that into account.
We need a way to force
_sendfile_fallback
whenssl=True
inloop.create_server
.I was thinking, if
transport.get_extra_info('sslcontext', False)
isTrue
then we fallback. What do you think?The text was updated successfully, but these errors were encountered: