1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 18:29:45 +02:00

Fix tokio depreciation warnings

This commit is contained in:
Sasha Hilton 2019-03-20 16:46:44 +01:00
parent c22a6d1fa0
commit fe4b71d76c
5 changed files with 6 additions and 3 deletions

View file

@ -7,7 +7,7 @@ use protobuf::{self, Message};
use rand::thread_rng;
use std::io::{self, Read};
use std::marker::PhantomData;
use tokio_io::codec::Framed;
use tokio_codec::{Decoder, Framed};
use tokio_io::io::{read_exact, write_all, ReadExact, Window, WriteAll};
use tokio_io::{AsyncRead, AsyncWrite};
@ -73,7 +73,7 @@ impl<T: AsyncRead + AsyncWrite> Future for Handshake<T> {
ClientResponse(ref mut codec, ref mut write) => {
let (connection, _) = try_ready!(write.poll());
let codec = codec.take().unwrap();
let framed = connection.framed(codec);
let framed = codec.framed(connection);
return Ok(Async::Ready(framed));
}
}