mirror of
https://github.com/fafhrd91/actix-web
synced 2025-02-20 03:14:21 +01:00
remove unused flag POLLED (#1980)
This commit is contained in:
parent
75a9a72e78
commit
ceace26ed4
@ -37,15 +37,14 @@ bitflags! {
|
|||||||
pub struct Flags: u8 {
|
pub struct Flags: u8 {
|
||||||
const STARTED = 0b0000_0001;
|
const STARTED = 0b0000_0001;
|
||||||
const KEEPALIVE = 0b0000_0010;
|
const KEEPALIVE = 0b0000_0010;
|
||||||
const POLLED = 0b0000_0100;
|
const SHUTDOWN = 0b0000_0100;
|
||||||
const SHUTDOWN = 0b0000_1000;
|
const READ_DISCONNECT = 0b0000_1000;
|
||||||
const READ_DISCONNECT = 0b0001_0000;
|
const WRITE_DISCONNECT = 0b0001_0000;
|
||||||
const WRITE_DISCONNECT = 0b0010_0000;
|
const UPGRADE = 0b0010_0000;
|
||||||
const UPGRADE = 0b0100_0000;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[pin_project::pin_project]
|
#[pin_project]
|
||||||
/// Dispatcher for HTTP/1.1 protocol
|
/// Dispatcher for HTTP/1.1 protocol
|
||||||
pub struct Dispatcher<T, S, B, X, U>
|
pub struct Dispatcher<T, S, B, X, U>
|
||||||
where
|
where
|
||||||
|
Loading…
x
Reference in New Issue
Block a user