Commit c76e86f4 authored by Steven Fackler's avatar Steven Fackler
Browse files

Update for io move

parent 2ebb3f08
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ use std::ptr;
use std::task;
use std::unstable::atomics::{AtomicBool, INIT_ATOMIC_BOOL, AtomicInt,
                             INIT_ATOMIC_INT, Acquire, Release, SeqCst};
use std::rt::io::{Stream, Reader, Writer, Decorator};
use std::io::{Stream, Reader, Writer, Decorator};
use std::vec;

use self::error::{SslError, SslSessionClosed, StreamEof};
+2 −2
Original line number Diff line number Diff line
#[feature(struct_variant)];

use std::rt::io::Writer;
use std::rt::io::net::tcp::TcpStream;
use std::io::Writer;
use std::io::net::tcp::TcpStream;
use std::str;

use lib::{Sslv23, SslContext, SslStream, SslVerifyPeer};