Lines Matching refs:ProtocolError
22 error::{Error, ProtocolError, Result},
37 return Err(Error::Protocol(ProtocolError::WrongHttpMethod)); in create_parts()
41 return Err(Error::Protocol(ProtocolError::WrongHttpVersion)); in create_parts()
51 return Err(Error::Protocol(ProtocolError::MissingConnectionUpgradeHeader)); in create_parts()
61 return Err(Error::Protocol(ProtocolError::MissingUpgradeWebSocketHeader)); in create_parts()
65 return Err(Error::Protocol(ProtocolError::MissingSecWebSocketVersionHeader)); in create_parts()
71 .ok_or(Error::Protocol(ProtocolError::MissingSecWebSocketKey))?; in create_parts()
128 return Err(Error::Protocol(ProtocolError::WrongHttpMethod)); in from_httparse()
132 return Err(Error::Protocol(ProtocolError::WrongHttpVersion)); in from_httparse()
240 return Err(Error::Protocol(ProtocolError::JunkAfterRequest)); in stage_finished()
259 return Err(Error::Protocol(ProtocolError::CustomResponseSuccessful)); in stage_finished()