-
Notifications
You must be signed in to change notification settings - Fork 83
Add Windows support #84
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
Comments
This was referenced Apr 24, 2020
mcr
pushed a commit
to mcr/rust-mbedtls
that referenced
this issue
Aug 10, 2023
PoolKey calls unwrap() on an option that can be None. Specifically, the local variable `port` can be None when PoolKey is constructed with a Url whose scheme is unrecognized in url.port_or_known_default(). To fix that, make port an Option. Also, make scheme part of the PoolKey. This prevents, for instance, a stream opened for `https://example.com:9999` being reused on a request for `http://example.com:9999`. Remove the test-only pool.get() accessor. This was used in only one test, agent_pool in range.rs. This seemed like it was testing the agent more than it was testing ranges, so I moved it to agent.rs and edited to remove the range-testing parts. Also, reject unrecognized URLs earlier in connect_socket so they don't reach try_get_connection.
Done by #235 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Windows support is blocked on #5
after bindgen is updated:
TODO:
The text was updated successfully, but these errors were encountered: