summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/packet.c
AgeCommit message (Expand)Author
2009-06-27packet_bacup_state() and packet_restore_state() will be used toAndreas Gunnarsson
2009-06-12Move some more statics into session_stateAndreas Gunnarsson
2009-06-12Fix warnings found by chl@ and djm@ and change roaming_atomicio'sAndreas Gunnarsson
2009-05-28Keep track of number of bytes read and written. Needed for upcomingAndreas Gunnarsson
2009-05-27Add packet_put_int64() and packet_get_int64(), part of a larger changeAndreas Gunnarsson
2009-05-25Put the globals in packet.c into a struct and don't access it directlyAndreas Gunnarsson
2009-02-13check for enc !=NULL in packet_start_discardMarkus Friedl
2009-01-26Work around the CPNI-957037 Plaintext Recovery Attack by alwaysMarkus Friedl
2008-11-21packet_disconnect() on padding error, too. should reduce the successMarkus Friedl
2008-07-10sync v1 and v2 traffic accounting; add it to sshd, too; ok djm@, dtucker@Markus Friedl
2008-07-04handle EINTR in packet_write_poll()l ok dtucker@Damien Miller
2008-06-13compile on older gcc; no decl after codeTheo de Raadt
2008-06-12Make keepalive timeouts apply while waiting for a packet, particularly duringDarren Tucker
2008-05-19unbreak protocol keepalive timeouts bz#1465; ok dtucker@Damien Miller
2008-05-08avoid extra malloc/copy/free when receiving data over the net;Markus Friedl
2008-02-22Allow all SSH2 packet types, including UNIMPLEMENTED to reset theDarren Tucker
2008-01-23Revert the change for bz #1307 as it causes connection aborts if an IGNOREDarren Tucker
2007-12-28Make SSH2_MSG_UNIMPLEMENTED and SSH2_MSG_IGNORE messages reset theDarren Tucker
2007-06-07Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, mustPeter Valchev
2007-06-05Preserve MAC ctx between packets, saving 2xhash calls per-packet.Damien Miller
2007-05-31gc unreachable code; spotted by Tavis OrmandyDamien Miller
2006-09-19client NULL deref on protocol error; Tavis Ormandy, Google Security TeamMarkus Friedl
2006-09-16limit maximum work performed by the CRC compensation attack detector,Damien Miller
2006-08-05Typo in commentDarren Tucker
2006-08-03almost entirely get rid of the culture of ".h files that include .h files"Theo de Raadt
2006-08-01move #include <stdio.h> out of includes.hKevin Steves
2006-07-26move #include <stdlib.h> out of includes.hKevin Steves
2006-07-26move #include <sys/param.h> out of includes.hKevin Steves
2006-07-25move #include <sys/time.h> out of includes.hKevin Steves
2006-07-22move #include <string.h> out of includes.hKevin Steves
2006-07-17move #include <unistd.h> out of includes.hKevin Steves
2006-07-11move #include <errno.h> out of includes.h; ok markus@Kevin Steves
2006-07-10move #include <stdarg.h> out of includes.h; ok markus@Kevin Steves
2006-07-08move #include <sys/socket.h> out of includes.hKevin Steves
2006-07-05move #include <netinet/in.h> out of includes.h; ok deraadt@Kevin Steves
2006-03-30replace {GET,PUT}_XXBIT macros with functionally similar functions,Damien Miller
2006-03-25remove (char *) casts to a function that accepts void * for the argTheo de Raadt
2006-03-25needed casts (always will be needed)Theo de Raadt
2006-03-25Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatDamien Miller
2006-03-25introduce xcalloc() and xasprintf() failure-checked allocations functionsDamien Miller
2006-03-22remove IV support from the CRC attack detector, OpenSSH has never usedDamien Miller
2006-03-20spacingTheo de Raadt
2006-03-20in a switch (), break after return or goto is stupidTheo de Raadt
2006-03-19RCSID() can dieTheo de Raadt
2006-03-13Set TCP_NODELAY for all connections not just "interactive" ones. FixesDarren Tucker
2006-02-08move #include <netinet/in_systm.h> and <netinet/ip.h> out ofKevin Steves
2005-10-30no need to escape single quotes in comments, no binary changeDamien Miller
2005-07-28missing packet_init_compression(); from solarMarkus Friedl
2005-07-25add a new compression method that delays compression until the userMarkus Friedl
2005-06-17make this -Wsign-compare clean; ok avsm@ markus@Damien Miller