quininer / tokio-rustls

Asynchronous TLS/SSL streams for Tokio using Rustls.
142 stars 38 forks source link

Merge std-client.rs into client.rs to unbreak Windows build. #3

Closed briansmith closed 7 years ago

briansmith commented 7 years ago

The Windows build is failing because client.rs doesn't define main on non-Unixy platforms because of its #![cfg(unix)]. Merge std-client.rs into client.rs to solve this and to reduce redundancy. Continue using blocking stdin/stdout I/O on non-Unixy platforms until we get nonblocking stdin/stdout working on those platforms.

quininer commented 7 years ago

thanks!