diff options
author | Robey Pointer <robey@lag.net> | 2003-11-09 21:14:21 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2003-11-09 21:14:21 +0000 |
commit | 5a4871439498fdd0cb8ea391852fc604470b2668 (patch) | |
tree | 497430ed3d15e634267805fe14eca98cd158b402 /demo.py | |
parent | 79fecc456499cc12e56e373871991cf804468a9d (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-5]
big chunk of work which makes server code 95% done
fixed auth check methods to return just a result (failed, succeeded,
partially succeeded) and always use get_allowed_auths to determine the
list of allowed auth methods to return.
channel's internal API changed a bit to allow for client-side vs.
server-side channels. we now honor the "want-reply" bit from channel
requests. in server mode (for now), we automatically allow pty-req
and shell requests without doing anything.
ChannelFile was fixed up a bit to support universal newlines. readline
got rewritten: the old way used the "greedy" read call from ChannelFile,
which won't work if the socket doesn't have that much data buffered and
ready. now it uses recv directly, and tracks the different newlines.
demo-server.py now answers to a single shell request (like a CLI ssh
tool will make) and does a very simple demo pretending to be a BBS.
transport: fixed a bug with parsing the remote side's banner. channel
requests are passed to another method in server mode, to determine if
we should allow it. new allowed channels are added to an accept queue,
and a new method 'accept' (with timeout) will block until the next
incoming channel is ready.
Diffstat (limited to 'demo.py')
-rwxr-xr-x | demo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ try: # print repr(t) keys = load_host_keys() - keytype, hostkey = t.get_host_key() + keytype, hostkey = t.get_remote_server_key() if not keys.has_key(hostname): print '*** WARNING: Unknown host key!' elif not keys[hostname].has_key(keytype): |