We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Normal http requests (no ssl) does not seem to work.
The error returned by GetLastError() is 12157, which translate into:
GetLastError()
12157
ERROR_INTERNET_SECURITY_CHANNEL_ERROR
The application experienced an internal error loading the SSL libraries.
This is probably due to INTERNET_SECURE_FLAG used in HttpOpenRequestA().
INTERNET_SECURE_FLAG
HttpOpenRequestA()
A simple solution could be to select flags based on which type of protocol is used.
The text was updated successfully, but these errors were encountered:
fix hack-tramp#24
f0082e5
No branches or pull requests
Normal http requests (no ssl) does not seem to work.
The error returned by
GetLastError()
is12157
, which translate into:ERROR_INTERNET_SECURITY_CHANNEL_ERROR
This is probably due to
INTERNET_SECURE_FLAG
used inHttpOpenRequestA()
.A simple solution could be to select flags based on which type of protocol is used.
The text was updated successfully, but these errors were encountered: