summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/msg.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* use the new variant log macros instead of prepending __func__ anddjm2020-10-181-8/+8
| | | | appending ssh_err(r) manually; ok markus@
* allow sshd_config longer than 256k; ok djmmarkus2020-06-241-2/+2
|
* some __func__ and strerror(errno) here; no functional changedjm2020-01-221-7/+7
|
* replace cast with call to sshbuf_mutable_ptr(); ok djm@markus2018-07-091-2/+2
|
* sync ssh-keysign, ssh-keygen and some dependencies to the newdjm2015-01-151-10/+15
| | | | buffer/key API; mostly mechanical, ok markus@
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-2/+4
| | | | | ok djm, sort of ok stevesk makes the pain stop in one easy step
* move #include <string.h> out of includes.hstevesk2006-07-221-1/+2
|
* move #include <unistd.h> out of includes.hstevesk2006-07-171-1/+4
|
* move #include <errno.h> out of includes.h; ok markus@stevesk2006-07-111-1/+3
|
* replace {GET,PUT}_XXBIT macros with functionally similar functions,djm2006-03-301-4/+4
| | | | | | silencing a heap of lint warnings. also allows them to use __bounded__ checking which can't be applied to macros; requested by and feedback from deraadt@
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
| | | | Theo nuked - our scripts to sync -portable need them in the files
* RCSID() can diederaadt2006-03-191-1/+0
|
* Switch atomicio to use a simpler interface; it now returns a size_tavsm2005-05-241-9/+6
| | | | | | | | | | | (containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@
* return error on msg send/receive failure (rather than fatal); ok markus@djm2003-11-171-14/+23
|
* deal with typing of write vs read in atomicioderaadt2003-06-281-3/+3
|
* s/msg_send/ssh_msg_send/ to avoid namespace clashes in portable; ok markus@djm2002-12-191-10/+10
|
* %uderaadt2002-07-011-2/+2
|
* printf type pedantitojun2002-06-241-3/+3
|
* KNF done automatically while reading....deraadt2002-06-191-2/+2
|
* add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authenticationmarkus2002-05-231-0/+73
in protocol v2 (needs to access the hostkeys).