Add ProxyCommand classes to top level API
This commit is contained in:
parent
7a3cb790a6
commit
308c5f57d9
|
@ -65,7 +65,7 @@ from auth_handler import AuthHandler
|
||||||
from channel import Channel, ChannelFile
|
from channel import Channel, ChannelFile
|
||||||
from ssh_exception import SSHException, PasswordRequiredException, \
|
from ssh_exception import SSHException, PasswordRequiredException, \
|
||||||
BadAuthenticationType, ChannelException, BadHostKeyException, \
|
BadAuthenticationType, ChannelException, BadHostKeyException, \
|
||||||
AuthenticationException
|
AuthenticationException, ProxyCommandFailure
|
||||||
from server import ServerInterface, SubsystemHandler, InteractiveQuery
|
from server import ServerInterface, SubsystemHandler, InteractiveQuery
|
||||||
from rsakey import RSAKey
|
from rsakey import RSAKey
|
||||||
from dsskey import DSSKey
|
from dsskey import DSSKey
|
||||||
|
@ -83,6 +83,7 @@ from agent import Agent, AgentKey
|
||||||
from pkey import PKey
|
from pkey import PKey
|
||||||
from hostkeys import HostKeys
|
from hostkeys import HostKeys
|
||||||
from config import SSHConfig
|
from config import SSHConfig
|
||||||
|
from proxy import ProxyCommand
|
||||||
|
|
||||||
# fix module names for epydoc
|
# fix module names for epydoc
|
||||||
for c in locals().values():
|
for c in locals().values():
|
||||||
|
@ -119,6 +120,8 @@ __all__ = [ 'Transport',
|
||||||
'BadAuthenticationType',
|
'BadAuthenticationType',
|
||||||
'ChannelException',
|
'ChannelException',
|
||||||
'BadHostKeyException',
|
'BadHostKeyException',
|
||||||
|
'ProxyCommand',
|
||||||
|
'ProxyCommandFailure',
|
||||||
'SFTP',
|
'SFTP',
|
||||||
'SFTPFile',
|
'SFTPFile',
|
||||||
'SFTPHandle',
|
'SFTPHandle',
|
||||||
|
|
Loading…
Reference in New Issue