mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-04-05 06:48:53 +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:
|
else:
|
||||||
helpers.logprefix = 'client: '
|
helpers.logprefix = 'client: '
|
||||||
debug1('connecting to server...\n')
|
debug1('connecting to server...\n')
|
||||||
|
try:
|
||||||
(serverproc, serversock) = ssh.connect(remotename, python)
|
(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)
|
mux = Mux(serversock, serversock)
|
||||||
handlers.append(mux)
|
handlers.append(mux)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user