Add comments to Tor discovery errors.
This commit is contained in:
parent
3172e84bb3
commit
b5a7d52f21
1 changed files with 9 additions and 1 deletions
|
@ -23,8 +23,16 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
// ErrTorInvalidAddressResponse indicates an invalid address was
|
||||||
|
// returned by the Tor DNS resolver.
|
||||||
ErrTorInvalidAddressResponse = errors.New("invalid address response")
|
ErrTorInvalidAddressResponse = errors.New("invalid address response")
|
||||||
|
|
||||||
|
// ErrTorInvalidProxyResponse indicates the Tor proxy returned a
|
||||||
|
// response in an unexpected format.
|
||||||
ErrTorInvalidProxyResponse = errors.New("invalid proxy response")
|
ErrTorInvalidProxyResponse = errors.New("invalid proxy response")
|
||||||
|
|
||||||
|
// ErrTorUnrecognizedAuthMethod indicates the authentication method
|
||||||
|
// provided is not recognized.
|
||||||
ErrTorUnrecognizedAuthMethod = errors.New("invalid proxy authentication method")
|
ErrTorUnrecognizedAuthMethod = errors.New("invalid proxy authentication method")
|
||||||
|
|
||||||
torStatusErrors = map[byte]error{
|
torStatusErrors = map[byte]error{
|
||||||
|
|
Loading…
Add table
Reference in a new issue