-
Notifications
You must be signed in to change notification settings - Fork 892
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
Various networking fixes #400
Conversation
This makes hyper use the platform TLS on Windows and OS X, and adds hostname validation on all platforms.
It appears that rust-crypto has a native component that's failing the build. I'll find a sha256 implementation that doesn't. |
@@ -1,13 +1,15 @@ | |||
#![feature(core_intrinsics)] // For type_name(). | |||
#![feature(fundamental)] | |||
#![feature(step_by)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:( I thought we wanted to go the other way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it just happened to be used by the sha code and didn't seem worth messing with, but it should be easy to remove. I'll look at it.
Nice! r+ from me basically, but looks like the openssl crate is still getting compiled on MinGW which is causing a build failure. Maybe something's bringing it in by accident? |
Passing this call through seems like the safe thing to do.
Fixes #243, fixes #204, #344
r? @alexcrichton cc @sfackler @seanmonstar