summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
AgeCommit message (Collapse)Author
2002-03-19KNF whitespaceMarkus Friedl
2002-02-14increase the SSH v2 window size to 4 packets. comsumes a littleMarkus Friedl
bit more memory for slow receivers but increases througput.
2002-02-07remove bogus commentsMarkus Friedl
2002-02-06channel_new never returns NULL, mouring@; ok djm@Markus Friedl
2002-02-05merge channel_request() into channel_request_start()Markus Friedl
2002-02-03generic callbacks are not really used, remove andMarkus Friedl
add a callback for msg of type SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ok djm@
2002-01-27handle simple case to identify FamilyLocal display; ok markus@Kevin Steves
2002-01-16wrapper for channel_setup_fwd_listenerMarkus Friedl
2001-12-28remove plen from the dispatch fn. it's no longer used.Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus Friedl
2001-12-28s/packet_done/packet_check_eom/ (end-of-message); ok djm@Markus Friedl
2001-12-27get rid of packet_integrity_check, use packet_done() instead.Markus Friedl
2001-12-20Conformance fix: we should send failing packet sequence number whenDamien Miller
responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
2001-12-19change the buffer/packet interface to use void* vs. char*; ok markus@Kevin Steves
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt
2001-11-30sscanf() length dependencies are clearer now; can also shrink protoKevin Steves
and data if desired, but i have not done that. ok markus@
2001-10-24ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@Markus Friedl
2001-10-24remove unusedMarkus Friedl
2001-10-08some more IPv4or6 cleanupMarkus Friedl
2001-10-01remove ugliness; vp@drexel.edu via angelosMarkus Friedl
2001-09-28bug: read user config first; report kaukasoi@elektroni.ee.tut.fiMarkus Friedl
2001-09-24don't rely on <unistd.h> for getopt(3) extern variable declarations;Kevin Steves
for portable. ok deraadt@
2001-09-20bug compat: request a dummy channel for -N (no shell) sessions + cleanup; ↵Markus Friedl
vinschen@redhat.com
2001-09-03fatal() for nonexistent -Fssh_config. ok markus@Kevin Steves
2001-08-29validate ports for -L/-R; ok markus@Kevin Steves
2001-08-29document -D and DynamicForward; ok markus@Kevin Steves
2001-08-28allow: ssh -F configfile hostMarkus Friedl
2001-08-11fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>. ok markus@Jakob Schlyter
2001-08-02clean up some /* SMARTCARD */. ok markus@Jakob Schlyter
2001-08-02add /* SMARTCARD */ to #else/#endif. ok markus@Jakob Schlyter
2001-08-02add smartcard to usage(). ok markus@Jakob Schlyter
2001-08-01support finish rsa keys.Markus Friedl
free public keys after login -> call finish -> close smartcard.
2001-08-01use strings instead of ints for smartcard reader idsMarkus Friedl
2001-07-31add 'SmartcardDevice' client option to specify which smartcard device is usedJakob Schlyter
to access a smartcard used for storing the user's private RSA key. ok markus@.
2001-07-27If smart card support is compiled in and a smart card is being usedTodd C. Miller
for authentication, make it the first method used. markus@ OK
2001-07-25cleanup connect(); connection_attempts 4 -> 1; from eivind@freebsd.orgMarkus Friedl
2001-07-11sort options string, fix -p, add -kMarkus Friedl
2001-07-09Use getopt(3); markus@ ok.Federico G. Schwindt
2001-06-26add smartcard support to the client, too (now you can use bothMarkus Friedl
the agent and the client).
2001-06-23more strict prototypes. raise warning level in Makefile.inc. markus ok'edJun-ichiro itojun Hagino
TODO; cleanup headers
2001-06-22don't overwrite argv (fixes ssh user@host in 'ps'), report by ericj@Markus Friedl
2001-06-07use xxx_put_cstring()Markus Friedl
2001-05-31undo the .c file split, just merge the header and keep the cvs historyMarkus Friedl
2001-05-30merge functions, simplify.Markus Friedl
2001-05-30channel layer cleanup: merge header files and split .c filesMarkus Friedl
2001-05-28fix usage()Markus Friedl
2001-05-24don't perform escape processing when ``EscapeChar none''; ok markus@Kevin Steves
2001-05-04move to Channel **channels (instead of Channel *channels), fixes realloc ↵Markus Friedl
problems. channel_new now returns a Channel *, favour Channel * over channel id. remove old channel_allocate interface.
2001-04-30implement 'ssh -b bind_address' like 'telnet -b'Markus Friedl
2001-04-17undo socks5 and https support since they are not really used andMarkus Friedl
only bloat ssh. remove -D from usage(), since '-D' is experimental.