We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maybe in server.go line 41, dstServer, err := net.DialTCP("tcp", nil, request.RAWADDR) the same request.RAWADDR,but still build a new connect.
but i don't know how to fix it
The text was updated successfully, but these errors were encountered:
i fix a litte stuff in server.go line 60,
```
SecureCopy(dstServer, client, auth.Encrypt) readTimeout := 60 * 5 * time.Second err = dstServer.SetReadDeadline(time.Now().Add(readTimeout)) if err != nil { log.Println("setReadDeadline failed:", err) }
Sorry, something went wrong.
i fix a litte stuff in server.go line 60, SecureCopy(dstServer, client, auth.Encrypt) readTimeout := 60 * 5 * time.Second err = dstServer.SetReadDeadline(time.Now().Add(readTimeout)) if err != nil { log.Println("setReadDeadline failed:", err) }
Yes, I am not set timeout to server.
No branches or pull requests
maybe in server.go line 41,
dstServer, err := net.DialTCP("tcp", nil, request.RAWADDR)
the same request.RAWADDR,but still build a new connect.
but i don't know how to fix it
The text was updated successfully, but these errors were encountered: