socks5_impl/
error.rs

1/// The library's error type.
2#[derive(Debug, thiserror::Error)]
3pub enum Error {
4    #[error("{0}")]
5    Io(#[from] std::io::Error),
6
7    #[error("{0}")]
8    FromUtf8(#[from] std::string::FromUtf8Error),
9
10    #[error("Invalid SOCKS version: {0:x}")]
11    InvalidVersion(u8),
12    #[error("Invalid command: {0:x}")]
13    InvalidCommand(u8),
14    #[error("Invalid address type: {0:x}")]
15    InvalidAtyp(u8),
16    #[error("Invalid reserved bytes: {0:x}")]
17    InvalidReserved(u8),
18    #[error("Invalid authentication status: {0:x}")]
19    InvalidAuthStatus(u8),
20    #[error("Invalid authentication version of subnegotiation: {0:x}")]
21    InvalidAuthSubnegotiation(u8),
22    #[error("Invalid fragment id: {0:x}")]
23    InvalidFragmentId(u8),
24
25    #[error("Invalid authentication method: {0:?}")]
26    InvalidAuthMethod(crate::protocol::AuthMethod),
27
28    #[error("SOCKS version is 4 when 5 is expected")]
29    WrongVersion,
30
31    #[error("AddrParseError: {0}")]
32    AddrParseError(#[from] std::net::AddrParseError),
33
34    #[error("ParseIntError: {0}")]
35    ParseIntError(#[from] std::num::ParseIntError),
36
37    #[error("Utf8Error: {0}")]
38    Utf8Error(#[from] std::str::Utf8Error),
39
40    #[error("{0}")]
41    String(String),
42}
43
44impl From<&str> for Error {
45    fn from(s: &str) -> Self {
46        Error::String(s.to_string())
47    }
48}
49
50impl From<String> for Error {
51    fn from(s: String) -> Self {
52        Error::String(s)
53    }
54}
55
56impl From<&String> for Error {
57    fn from(s: &String) -> Self {
58        Error::String(s.to_string())
59    }
60}
61
62impl From<Error> for std::io::Error {
63    fn from(e: Error) -> Self {
64        match e {
65            Error::Io(e) => e,
66            _ => std::io::Error::new(std::io::ErrorKind::Other, e),
67        }
68    }
69}
70
71#[cfg(feature = "tokio")]
72impl From<tokio::time::error::Elapsed> for Error {
73    fn from(e: tokio::time::error::Elapsed) -> Self {
74        Error::Io(e.into())
75    }
76}
77
78/// The library's `Result` type alias.
79pub type Result<T, E = Error> = std::result::Result<T, E>;