summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* no longer use uidswap.[ch] from the ssh clientmarkus2002-06-111-10/+10
| | | | | | run less code with euid==0 if ssh is installed setuid root just switch the euid, don't switch the complete set of groups (this is only needed by sshd). ok provos@
* deprecate FallBackToRsh and UseRsh; patch from djm@markus2002-06-081-71/+3
|
* nuke ptrace commentmarkus2002-06-081-9/+1
|
* add comment about ssh-keysignmarkus2002-05-231-1/+3
|
* add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authenticationmarkus2002-05-231-7/+14
| | | | in protocol v2 (needs to access the hostkeys).
* spelling; abishoff@arc.nasa.govderaadt2002-05-221-3/+3
|
* don't limit xauth pathlen on client side and longer print length onstevesk2002-05-161-3/+3
| | | | | server when debug; ok markus@ patch from pin@math.chalmers.se
* request reply (success/failure) for -R style fwd in protocol v2,markus2002-04-221-1/+25
| | | | | depends on ordered replies. fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
* update Copyrightmarkus2002-03-261-1/+2
|
* simplify num_identity_files handlingmarkus2002-03-251-3/+3
|
* change sc_get_key to sc_get_keys and hide smartcard details in scard.cmarkus2002-03-251-33/+21
|
* Add PIN-protection for secret key.rees2002-03-211-2/+2
|
* KNF whitespacemarkus2002-03-191-2/+2
|
* increase the SSH v2 window size to 4 packets. comsumes a littlemarkus2002-02-141-4/+4
| | | | bit more memory for slow receivers but increases througput.
* remove bogus commentsmarkus2002-02-071-3/+1
|
* channel_new never returns NULL, mouring@; ok djm@markus2002-02-061-3/+1
|
* merge channel_request() into channel_request_start()markus2002-02-051-2/+3
|
* generic callbacks are not really used, remove andmarkus2002-02-031-4/+2
| | | | | add a callback for msg of type SSH2_MSG_CHANNEL_OPEN_CONFIRMATION ok djm@
* handle simple case to identify FamilyLocal display; ok markus@stevesk2002-01-271-4/+17
|
* wrapper for channel_setup_fwd_listenermarkus2002-01-161-2/+2
|
* remove plen from the dispatch fn. it's no longer used.markus2001-12-281-2/+2
|
* packet_read* no longer return the packet length, since it's not used.markus2001-12-281-6/+5
|
* s/packet_done/packet_check_eom/ (end-of-message); ok djm@markus2001-12-281-3/+3
|
* get rid of packet_integrity_check, use packet_done() instead.markus2001-12-271-2/+2
|
* Conformance fix: we should send failing packet sequence number whendjm2001-12-201-2/+2
| | | | | responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
* change the buffer/packet interface to use void* vs. char*; ok markus@stevesk2001-12-191-5/+5
|
* basic KNF done while i was looking for something elsederaadt2001-12-191-4/+4
|
* sscanf() length dependencies are clearer now; can also shrink protostevesk2001-11-301-9/+13
| | | | and data if desired, but i have not done that. ok markus@
* ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@markus2001-10-241-1/+3
|
* remove unusedmarkus2001-10-241-9/+1
|
* some more IPv4or6 cleanupmarkus2001-10-081-2/+2
|
* remove ugliness; vp@drexel.edu via angelosmarkus2001-10-011-1/+2
|
* bug: read user config first; report kaukasoi@elektroni.ee.tut.fimarkus2001-09-281-3/+3
|
* don't rely on <unistd.h> for getopt(3) extern variable declarations;stevesk2001-09-241-1/+3
| | | | for portable. ok deraadt@
* bug compat: request a dummy channel for -N (no shell) sessions + cleanup; vinschen@redhat.commarkus2001-09-201-10/+15
|
* fatal() for nonexistent -Fssh_config. ok markus@stevesk2001-09-031-4/+6
|
* validate ports for -L/-R; ok markus@stevesk2001-08-291-20/+19
|
* document -D and DynamicForward; ok markus@stevesk2001-08-291-1/+2
|
* allow: ssh -F configfile hostmarkus2001-08-281-8/+24
|
* fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>. ok markus@jakob2001-08-111-2/+2
|
* clean up some /* SMARTCARD */. ok markus@jakob2001-08-021-5/+5
|
* add /* SMARTCARD */ to #else/#endif. ok markus@jakob2001-08-021-5/+5
|
* add smartcard to usage(). ok markus@jakob2001-08-021-1/+4
|
* support finish rsa keys.markus2001-08-011-1/+11
| | | | free public keys after login -> call finish -> close smartcard.
* use strings instead of ints for smartcard reader idsmarkus2001-08-011-3/+3
|
* add 'SmartcardDevice' client option to specify which smartcard device is usedjakob2001-07-311-9/+4
| | | | to access a smartcard used for storing the user's private RSA key. ok markus@.
* If smart card support is compiled in and a smart card is being usedmillert2001-07-271-18/+23
| | | | for authentication, make it the first method used. markus@ OK
* cleanup connect(); connection_attempts 4 -> 1; from eivind@freebsd.orgmarkus2001-07-251-15/+14
|
* sort options string, fix -p, add -kmarkus2001-07-111-2/+2
|
* Use getopt(3); markus@ ok.fgsch2001-07-091-63/+69
|