mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
Remove erroneous logging around pt.*Error calls.
These functions are called for their side effect of sending a PT error message on stdout; they also return a representation of the error message as an error object for the caller to use if it wishes. These functions *always* return a non-nil error object; it is not something to be logged, any more than the return value of errors.New is. The mistaken logging was added in https://bugs.torproject.org/31794b26c7a7a73
3ec9dd19fa
ed3d42e1ec
This commit is contained in:
parent
37aaaffa15
commit
5ff75e1034
3 changed files with 7 additions and 21 deletions
|
@ -230,9 +230,7 @@ func main() {
|
|||
bindaddr.Addr.Port = 12345 // lies!!!
|
||||
pt.Smethod(bindaddr.MethodName, bindaddr.Addr)
|
||||
default:
|
||||
if err := pt.SmethodError(bindaddr.MethodName, "no such method"); err != nil {
|
||||
log.Printf("SmethodError returned error: %v", err)
|
||||
}
|
||||
pt.SmethodError(bindaddr.MethodName, "no such method")
|
||||
}
|
||||
}
|
||||
pt.SmethodsDone()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue