mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-06-20 16:10:52 +00:00
Initial support digest auth scheme
This commit is contained in:
parent
6767076a6b
commit
86429ee8eb
6 changed files with 321 additions and 67 deletions
|
@ -48,6 +48,12 @@ pub enum Error {
|
|||
|
||||
#[error("std::num::ParseIntError {0:?}")]
|
||||
IntParseError(#[from] std::num::ParseIntError),
|
||||
|
||||
#[error("httparse::Error {0}")]
|
||||
HttpError(#[from] httparse::Error),
|
||||
|
||||
#[error("digest_auth::Error {0}")]
|
||||
DigestAuthError(#[from] digest_auth::Error),
|
||||
}
|
||||
|
||||
impl From<&str> for Error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue