mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
write back error status when authentication timeout
This commit is contained in:
parent
2e46e95536
commit
74938dc428
@ -105,10 +105,7 @@ func (s *ServerSession) Handshake(reader io.Reader, writer io.Writer) (*protocol
|
|||||||
|
|
||||||
if expectedAuth == authPassword {
|
if expectedAuth == authPassword {
|
||||||
username, password, err := readUsernamePassword(reader)
|
username, password, err := readUsernamePassword(reader)
|
||||||
if err != nil {
|
if err != nil || !s.config.HasAccount(username, password) {
|
||||||
return nil, errors.Base(err).Message("Socks|Server: Failed to read username or password.")
|
|
||||||
}
|
|
||||||
if !s.config.HasAccount(username, password) {
|
|
||||||
writeSocks5AuthenticationResponse(writer, 0xFF)
|
writeSocks5AuthenticationResponse(writer, 0xFF)
|
||||||
return nil, errors.Base(err).Message("Socks|Server: Invalid username or password.")
|
return nil, errors.Base(err).Message("Socks|Server: Invalid username or password.")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user