Formatting
This commit is contained in:
parent
e207a4f704
commit
e2ac82c47c
|
@ -70,8 +70,9 @@ class Transport (threading.Thread):
|
||||||
"""
|
"""
|
||||||
An SSH Transport attaches to a stream (usually a socket), negotiates an
|
An SSH Transport attaches to a stream (usually a socket), negotiates an
|
||||||
encrypted session, authenticates, and then creates stream tunnels, called
|
encrypted session, authenticates, and then creates stream tunnels, called
|
||||||
`channels <.Channel>`, across the session. Multiple channels can be multiplexed
|
`channels <.Channel>`, across the session. Multiple channels can be
|
||||||
across a single session (and often are, in the case of port forwardings).
|
multiplexed across a single session (and often are, in the case of port
|
||||||
|
forwardings).
|
||||||
"""
|
"""
|
||||||
_PROTO_ID = '2.0'
|
_PROTO_ID = '2.0'
|
||||||
_CLIENT_ID = 'paramiko_%s' % (paramiko.__version__)
|
_CLIENT_ID = 'paramiko_%s' % (paramiko.__version__)
|
||||||
|
|
Loading…
Reference in New Issue