Package paramiko :: Module agent :: Class AgentClientProxy
[frames] | no frames]

Class AgentClientProxy

source code

object --+
         |
        AgentClientProxy


Class proxying request as a client:
   -> client ask for a request_forward_agent()
   -> server creates a proxy and a fake SSH Agent
   -> server ask for establishing a connection when needed,
   calling the forward_agent_handler at client side.
   -> the forward_agent_handler launch a thread for connecting
   the remote fake agent and the local agent
   -> Communication occurs ...

Instance Methods
 
__init__(self, chanRemote)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__del__(self) source code
 
connect(self)
Method automatically called by the run() method of the AgentProxyThread
source code
 
close(self)
Close the current connection and terminate the agent Should be called manually
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, chanRemote)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)