mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
Move ErrExtraInfo to ipc.go
This commit is contained in:
parent
a4bbb728e6
commit
0ae4d821f0
2 changed files with 1 additions and 2 deletions
|
@ -12,6 +12,7 @@ type Arg struct {
|
||||||
var (
|
var (
|
||||||
ErrBadRequest = errors.New("bad request")
|
ErrBadRequest = errors.New("bad request")
|
||||||
ErrInternal = errors.New("internal error")
|
ErrInternal = errors.New("internal error")
|
||||||
|
ErrExtraInfo = errors.New("client sent extra info")
|
||||||
|
|
||||||
StrTimedOut = "timed out waiting for answer!"
|
StrTimedOut = "timed out waiting for answer!"
|
||||||
StrNoProxies = "no snowflake proxies currently available"
|
StrNoProxies = "no snowflake proxies currently available"
|
||||||
|
|
|
@ -24,8 +24,6 @@ var KnownProxyTypes = map[string]bool{
|
||||||
"iptproxy": true,
|
"iptproxy": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
var ErrExtraInfo = errors.New("client sent extra info")
|
|
||||||
|
|
||||||
/* Version 1.2 specification:
|
/* Version 1.2 specification:
|
||||||
|
|
||||||
== ProxyPollRequest ==
|
== ProxyPollRequest ==
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue