Fix warnings

This commit is contained in:
Carl Lerche
2017-08-24 15:52:01 -07:00
parent 638791ac6c
commit b0e6867877
26 changed files with 91 additions and 238 deletions

View File

@@ -16,11 +16,11 @@ use self::ping_pong::PingPong;
use self::settings::Settings;
use self::streams::Prioritized;
use {StreamId, ConnectionError};
use ConnectionError;
use error::Reason;
use frame::{self, Frame};
use frame::{self, Frame, StreamId};
use futures::{self, task, Poll, Async, AsyncSink, Sink, Stream as Stream2};
use futures::{self, task, Poll, Async, AsyncSink};
use futures::task::Task;
use bytes::{Buf, IntoBuf};
use tokio_io::{AsyncRead, AsyncWrite};
@@ -50,12 +50,6 @@ pub type PingPayload = [u8; 8];
pub type WindowSize = u32;
#[derive(Debug, Copy, Clone)]
pub struct WindowUpdate {
stream_id: StreamId,
increment: WindowSize,
}
// Constants
pub const DEFAULT_INITIAL_WINDOW_SIZE: WindowSize = 65_535;
pub const MAX_WINDOW_SIZE: WindowSize = (1 << 31) - 1;
@@ -94,20 +88,3 @@ pub(crate) fn from_framed_write<T, P, B>(framed_write: FramedWrite<T, Prioritize
Connection::new(codec)
}
impl WindowUpdate {
pub fn new(stream_id: StreamId, increment: WindowSize) -> WindowUpdate {
WindowUpdate {
stream_id,
increment
}
}
pub fn stream_id(&self) -> StreamId {
self.stream_id
}
pub fn increment(&self) -> WindowSize {
self.increment
}
}