mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
made it a while loop to not do the rest of the auth methods if one suceeds
This commit is contained in:
@@ -71,6 +71,7 @@ class SSHHandler: @unchecked Sendable, ObservableObject {
|
|||||||
|
|
||||||
//TODO: check hostkey
|
//TODO: check hostkey
|
||||||
|
|
||||||
|
while state != .authorized {
|
||||||
for method in getAuthMethods() {
|
for method in getAuthMethods() {
|
||||||
switch method {
|
switch method {
|
||||||
case .password:
|
case .password:
|
||||||
@@ -91,8 +92,7 @@ class SSHHandler: @unchecked Sendable, ObservableObject {
|
|||||||
disconnect()
|
disconnect()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
guard state == .authorized else { return }
|
|
||||||
|
|
||||||
ssh_channel_request_env(channel, "TERM", "xterm-256color")
|
ssh_channel_request_env(channel, "TERM", "xterm-256color")
|
||||||
ssh_channel_request_env(channel, "LANG", "en_US.UTF-8")
|
ssh_channel_request_env(channel, "LANG", "en_US.UTF-8")
|
||||||
|
|||||||
Reference in New Issue
Block a user