summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2002-01-16correct some commented defaults. add Ciphers default. ok markus@Kevin Steves
2002-01-16correct defaults for -i/IdentityFile; ok markus@Kevin Steves
2002-01-16The stategy now used for options in the default sshd_config shippedKevin Steves
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-16wrapper for channel_setup_fwd_listenerMarkus Friedl
2002-01-16Use the volatile specifier to fix warnings about variables beingTodd C. Miller
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack.
2002-01-15minor simplification in preparation for a future change.Artur Grabowski
2002-01-15Make vmstat -m output the same for both sysctl and kvm versions.Artur Grabowski
Plus a minor simplification in preparation for a future change.
2002-01-15update to sudo 1.6.4p1Todd C. Miller
2002-01-14(c) 2002Markus Friedl
2002-01-14remove function pointers for events, remove chan_init*; ok provos@Markus Friedl
2002-01-14remove duplicated code; ok provos@Markus Friedl
2002-01-14correct fn names for ssh2, do not switch from closed to closed; ok provos@Markus Friedl
2002-01-14merge chan_[io]buf_empty[12]; ok provos@Markus Friedl
2002-01-14chan_send_oclose1() no longer calls chan_shutdown_write(); ok provos@Markus Friedl
2002-01-14sync with sudo 1.6.4-finalTodd C. Miller
2002-01-13add chan_set_[io]state(), order states, state is now an u_int,Markus Friedl
simplifies debugging messages; ok provos@
2002-01-13use buffer API and avoid static strings of fixed size; ok provos@/mouring@Markus Friedl
2002-01-13change to use queue.h macros; okay markus@Niels Provos
2002-01-12fix old new year, 14th not 15thMichael Shalayeff
2002-01-12undo local changeMarkus Friedl
2002-01-11use snprintf; mouring@Markus Friedl
2002-01-11use snprintf; mouring@Markus Friedl
2002-01-11use _PATH_TTYMarkus Friedl
2002-01-11use strlcpy not strlcat; mouring@Markus Friedl
2002-01-11a single dispatch_protocol_error() that sends a message of type 'UNIMPLEMENTED'Markus Friedl
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-11add defines for msg type rangesMarkus Friedl
2002-01-11handle received SSH2_MSG_UNIMPLEMENTED messages; ok djm@Markus Friedl
2002-01-10more unused code (with channels.c:1.156)Markus Friedl
2002-01-10remove dead code (skip drain)Markus Friedl
2002-01-10Clean up tty resizing code.Artur Grabowski
Catch SIGWINCH and resize and refresh the screen.
2002-01-10handle SSH2_MSG_GLOBAL_REQUEST (just reply with failure); ok djm@Markus Friedl
2002-01-10skip client_alive_check until there are channels; ok beck@Markus Friedl
2002-01-09streams goneEric Jackson
2002-01-09open RDWR only for -w, RDONLY otherwiseMichael Shalayeff
2002-01-09replace buffer_consume(b, buffer_len(b)) with buffer_clear(b); ok provos@Markus Friedl
2002-01-09merge channel_pre_open_15/channel_pre_open_20; ok provos@Markus Friedl
2002-01-09append \n only for public keysMarkus Friedl
2002-01-08atoi->strtoulEric Jackson
also, sbuf.private is a long
2002-01-08sync with sudo 1.6.4rc2Todd C. Miller
2002-01-08typo; mjc@bitz.caTodd C. Miller
2002-01-08deal with 32 vs 64 bit pointers. from netbsd.Eric Jackson
misc cleanup as well
2002-01-06Do not allow root to login via an insecure tty even if the auth methodTodd C. Miller
does not use plaintext passwords due to the possibility of connection hijacking. This restores the pre-3.0 behavior and closes PR 2299.
2002-01-05some missing and misplaced periodsKevin Steves
2002-01-05fix hanging x11 channels for rejected cookies (e.g. XAUTHORITY=/dev/null xbiff)Markus Friedl
bug #36, based on patch from djast@cs.toronto.edu
2002-01-04protocol 2 HostKey code default is now /etc/ssh_host_rsa_key andKevin Steves
/etc/ssh_host_dsa_key like we have in sshd_config. ok markus@
2002-01-04remove #ifdef _PATH_XAUTH/#endif; ok markus@Kevin Steves
2002-01-04Align the pointers when splitting up a mallocated area.Artur Grabowski
Cures alignment faults on alpha and sparc64. OK: niklas@ ericj@ millert@
2002-01-04Don't longjmp(..., 0)Artur Grabowski
2002-01-04Don't longjmp(..., 0)Artur Grabowski
2002-01-03clean def_data.c and def_data.h tooTodd C. Miller