Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ unicase = "1.0.1"
openssl = "0.7.6"
url = "1.0"
rustc-serialize = "0.3.16"
bitflags = "0.3.3"
bitflags = "0.6"
rand = "0.3.12"
byteorder = "0.5.1"
net2 = "0.2.17"
Expand Down
2 changes: 1 addition & 1 deletion src/ws/util/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};

bitflags! {
/// Flags relevant to a WebSocket data frame.
flags DataFrameFlags: u8 {
pub flags DataFrameFlags: u8 {
/// Marks this dataframe as the last dataframe
const FIN = 0x80,
/// First reserved bit
Expand Down