mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-04-04 05:51:13 +02:00
Catch the exception thrown when ssh can't connect.
Easiest test: give it an invalid hostname. Reported by Chetan Kunte.
This commit is contained in:
parent
6e336c09bf
commit
76bbbfd67b
@ -100,7 +100,13 @@ def _main(listener, fw, use_server, remotename, python, seed_hosts, auto_nets):
|
||||
else:
|
||||
helpers.logprefix = 'client: '
|
||||
debug1('connecting to server...\n')
|
||||
(serverproc, serversock) = ssh.connect(remotename, python)
|
||||
try:
|
||||
(serverproc, serversock) = ssh.connect(remotename, python)
|
||||
except socket.error, e:
|
||||
if e.errno == errno.EPIPE:
|
||||
raise Fatal("failed to establish ssh session")
|
||||
else:
|
||||
raise
|
||||
mux = Mux(serversock, serversock)
|
||||
handlers.append(mux)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user