mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix socks5 handshake
This commit is contained in:
parent
494f88c9b8
commit
5b05b5c147
1 changed files with 3 additions and 0 deletions
|
@ -171,6 +171,9 @@ func HandleConnection0(ctx context.Context, conn net.Conn, version byte, authent
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if response.Status != socks5.UsernamePasswordStatusSuccess {
|
||||
return E.New("socks5: authentication failed, username=", usernamePasswordAuthRequest.Username, ", password=", usernamePasswordAuthRequest.Password)
|
||||
}
|
||||
}
|
||||
request, err := socks5.ReadRequest(conn)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue