summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-02-05 - (djm) OpenBSD CVS SyncDamien Miller
- stevesk@cvs.openbsd.org 2002/01/24 21:09:25 [channels.c misc.c misc.h packet.c] add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning). no nagle changes just yet; ok djm@ markus@
2002-01-30[configure.ac] fix logic on when ssh-rand-helper is installed.Tim Rice
[sshd_config] put back in line that tells what PATH was compiled into sshd.
2002-01-30 - (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@Damien Miller
2002-01-26Fix spec file version numbersDamien Miller
2002-01-25 - (djm) Don't grab Xserver or pointer by default. x11-ssh-askpass doesn'tDamien Miller
and grabbing can cause deadlocks with kinput2.
2002-01-25 - (djm) Don't grab Xserver by default. x11-ssh-askpass doesn't and grabbingDamien Miller
can cause deadlocks with kinput2
2002-01-23 - (stevesk) Makefile.in: bug #61; delete commented line for now.Kevin Steves
2002-01-23 - (bal) reverted out of 5/2001 change to atexit(). I assume IBen Lindstrom
did it to handle SonyOS. If that is the case than we will do a special case for them.
2002-01-23 - (djm) Use case statements in autoconf to clean up some testsDamien Miller
2002-01-22 - (stevesk) fix --with-zlib=Kevin Steves
2002-01-23 - (djm) Fix non-standard shell syntax in autoconf. Patch fromDamien Miller
Dave Dykstra <dwd@bell-labs.com>
2002-01-22 - (djm) Use local sys/queue.h if necessary in ssh-agent.cDamien Miller
2002-01-22- (djm) Recent Glibc includes an incompatible sys/queue.h. Treat it asDamien Miller
bogus in configure
2002-01-22- (djm) Make auth2-pam.c compile again after dispatch.h and packet.hDamien Miller
changes
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/22 02:52:41Damien Miller
[servconf.c] typo in error message; from djast@cs.toronto.edu
2002-01-22 - markus@cvs.openbsd.org 2002/01/21 23:27:10Damien Miller
[channels.c nchan.c] cleanup channels faster if the are empty and we are in drain-state; ok deraadt@
2002-01-22 - markus@cvs.openbsd.org 2002/01/21 22:30:12Damien Miller
[cipher.c compat.c myproposal.h] remove "rijndael-*", just use "aes-" since this how rijndael is called in the drafts; ok stevesk@
2002-01-22 - markus@cvs.openbsd.org 2002/01/21 15:13:51Damien Miller
[sshconnect.c] use read_passphrase+ECHO in confirm(), allows use of ssh-askpass for hostkey confirm.
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/18 20:46:34Damien Miller
[sshd.8] clarify Allow(Groups|Users) and Deny(Groups|Users); suggestion from allard@oceanpark.com; ok markus@
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/18 18:14:17Damien Miller
[authfd.c bufaux.c buffer.c cipher.c packet.c ssh-agent.c ssh-keygen.c] unneeded cast cleanup; ok markus@
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/18 17:14:16Damien Miller
[sshd.8] correct Ciphers default; paola.mannaro@ubs.com
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/17 04:27:37Damien Miller
[log.c] casts to silence enum type warnings for bugzilla bug 37; ok markus@
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/16 17:55:33Damien Miller
[ssh_config] correct some commented defaults. add Ciphers default. ok markus@
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/16 17:42:33Damien Miller
[ssh.1] correct defaults for -i/IdentityFile; ok markus@
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/16 17:40:23Damien Miller
[sshd_config] The stategy now used for options in the default sshd_config shipped with OpenSSH is to specify options with their default value where possible, but leave them commented. Uncommented options change a default value. Subsystem is currently the only default option changed. ok markus@
2002-01-22 - markus@cvs.openbsd.org 2002/01/16 13:17:51Damien Miller
[channels.c channels.h serverloop.c ssh.c] wrapper for channel_setup_fwd_listener
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:57:03Damien Miller
[channels.h nchan.c] (c) 2002
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:55:55Damien Miller
[channels.c channels.h nchan.c] remove function pointers for events, remove chan_init*; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:41:13Damien Miller
[nchan.c] remove duplicated code; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:40:10Damien Miller
[nchan.c] correct fn names for ssh2, do not switch from closed to closed; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:34:07Damien Miller
[nchan.c] merge chan_[io]buf_empty[12]; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/14 13:22:35Damien Miller
[nchan.c] chan_send_oclose1() no longer calls chan_shutdown_write(); ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/13 21:31:20Damien Miller
[channels.h nchan.c] add chan_set_[io]state(), order states, state is now an u_int, simplifies debugging messages; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/13 17:57:37Damien Miller
[auth2.c auth2-chall.c compat.c sshconnect2.c sshd.c] use buffer API and avoid static strings of fixed size; ok provos@/mouring@
2002-01-22 - provos@cvs.openbsd.org 2002/01/13 17:27:07Damien Miller
[ssh-agent.c] change to use queue.h macros; okay markus@
2002-01-22 - markus@cvs.openbsd.org 2002/01/12 13:10:29Damien Miller
[auth-skey.c] undo local change
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 23:26:30Damien Miller
[auth-skey.c] use snprintf; mouring@
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 23:02:51Damien Miller
[auth2-chall.c] use snprintf; mouring@
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 23:02:18Damien Miller
[readpass.c] use _PATH_TTY
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 20:14:11Damien Miller
[auth2-chall.c auth-skey.c] use strlcpy not strlcat; mouring@
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 13:39:36Damien Miller
[auth2.c dispatch.c dispatch.h kex.c] a single dispatch_protocol_error() that sends a message of type 'UNIMPLEMENTED' dispatch_range(): set handler for a ranges message types use dispatch_protocol_ignore() for authentication requests after successful authentication (the drafts requirement). serverloop/clientloop now send a 'UNIMPLEMENTED' message instead of exiting.
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 13:36:43Damien Miller
[ssh2.h] add defines for msg type ranges
2002-01-22 - markus@cvs.openbsd.org 2002/01/11 10:31:05Damien Miller
[packet.c] handle received SSH2_MSG_UNIMPLEMENTED messages; ok djm@
2002-01-22 - markus@cvs.openbsd.org 2002/01/10 12:47:59Damien Miller
[nchan.c] more unused code (with channels.c:1.156)
2002-01-22 - markus@cvs.openbsd.org 2002/01/10 12:38:26Damien Miller
[nchan.c] remove dead code (skip drain)
2002-01-22 - markus@cvs.openbsd.org 2002/01/10 11:24:04Damien Miller
[clientloop.c] handle SSH2_MSG_GLOBAL_REQUEST (just reply with failure); ok djm@
2002-01-22 - markus@cvs.openbsd.org 2002/01/10 11:13:29Damien Miller
[serverloop.c] skip client_alive_check until there are channels; ok beck@
2002-01-22 - markus@cvs.openbsd.org 2002/01/09 17:26:35Damien Miller
[channels.c nchan.c] replace buffer_consume(b, buffer_len(b)) with buffer_clear(b); ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/09 17:16:00Damien Miller
[channels.c] merge channel_pre_open_15/channel_pre_open_20; ok provos@
2002-01-22 - markus@cvs.openbsd.org 2002/01/09 13:49:27Damien Miller
[ssh-keygen.c] append \n only for public keys