summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/misc.c
AgeCommit message (Collapse)Author
2005-04-09replace tilde_expand_filename with a simpler implementation, ahead of moreDamien Miller
whacking; ok deraadt@
2005-03-10spacingTheo de Raadt
2005-03-01bz#413: allow optional specification of bind address for port forwardings.Damien Miller
Patch originally by Dan Astorian, but worked on by several people Adds GatewayPorts=clientspecified option on server to allow remote forwards to bind to client-specified ports. ok markus@
2004-12-11Fix debug call in error path of authorized_keys processing and fix relatedDarren Tucker
warnings; ok djm@
2004-12-06Discard over-length authorized_keys entries rather than complaining whenDarren Tucker
they don't decode. bz #884, with & ok djm@
2004-08-11some signed/unsigned int comparison cleanups; markus@ okAnil Madhavapeddy
2004-06-14set_nonblock() instead of fnctl(...,O_NONBLOCK); "looks sane" deraadt@Damien Miller
2003-10-28error->debug for getsockopt+TCP_NODELAY; several requestsMarkus Friedl
2003-09-18more buffer allocation fixes; from Solar Designer; CAN-2003-0682; ok millert@Markus Friedl
2003-04-12debug->debug2Markus Friedl
2002-12-13cleanup debug messages, more useful information for the client user.Markus Friedl
2002-03-04$OpenBSD$ and RCSID() cleanup: don't use RCSID() in .h files; addKevin Steves
missing RCSID() to .c files and remove dup /*$OpenBSD$*/ from .c files. ok markus@
2002-03-04error-> debug, because O_NONBLOCK for /dev/null causes too many different ↵Markus Friedl
errnos; ok stevesk@, deraadt@
2002-02-26use socklen_tKevin Steves
2002-02-24disable Nagle in connect_to() and channel_post_port_listener() (portKevin Steves
forwarding endpoints). the intention is to preserve the on-the-wire appearance to applications at either end; the applications can then enable TCP_NODELAY according to their requirements. ok markus@
2002-01-24add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning).Kevin Steves
no nagle changes just yet; ok djm@ markus@
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt
2001-12-05minor KNFTheo de Raadt
2001-06-26remove comments from .h, since they are cut&paste from the .c filesMarkus Friedl
and out of sync
2001-06-16copy pw_expire and pw_change, too.Markus Friedl
2001-06-16typo; dunlap@apl.washington.eduMarkus Friedl
2001-05-19sshd command-line arguments and configuration file options thatKevin Steves
specify time may be expressed using a sequence of the form: time[qualifier], where time is a positive integer value and qualifier is one of the following: <none>,s,m,h,d,w Examples: 600 600 seconds (10 minutes) 10m 10 minutes 1h30m 1 hour 30 minutes (90 minutes) ok markus@
2001-05-11add unset_nonblock for stdout/err flushing in client_loop().Markus Friedl
2001-05-08Use addargs() in sftp plus some clean up of addargs(). OK Markusmouring
2001-05-03Move colon() and cleanhost() to misc.c where I should I have put it inmouring
the first place
2001-04-12robust port validation; ok markus@ jakob@Kevin Steves
2001-02-28for completeness, copy pw_gecos tooTheo de Raadt
2001-02-28pull in protosTheo de Raadt
2001-02-22use pwcopy in ssh.c, tooMarkus Friedl
2001-01-21split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.Markus Friedl
rename util.[ch] -> misc.[ch]