index
:
wireguard-openbsd
jd/histogram
jd/queueboosts
jd/simplify-queueing
master
WireGuard implementation for the OpenBSD kernel
Matt Dunwoodie
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
usr.bin
/
ssh
/
misc.h
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add support for Unix domain socket forwarding. A remote TCP port
millert
2014-07-15
1
-1
/
+24
*
revert __bounded change; it causes way more problems for portable than
djm
2014-05-02
1
-9
/
+9
*
use get/put_u32 to load values rather than *((UINT32 *)p) that breaks on
djm
2014-04-20
1
-1
/
+7
*
use __bounded(...) attribute recently added to sys/cdefs.h instead of
djm
2014-03-26
1
-7
/
+7
*
refactor client config code a little:
djm
2013-10-14
1
-1
/
+2
*
Use clock_gettime(CLOCK_MONOTONIC ...) for ssh timers so that things like
dtucker
2013-06-01
1
-1
/
+2
*
print ipqos friendly string for sshd -T; ok markus
stevesk
2011-03-29
1
-1
/
+2
*
honour $TMPDIR for client xauth and ssh-agent temporary directories;
djm
2010-11-21
1
-1
/
+2
*
allow ssh and sshd to set arbitrary TOS/DSCP/QoS values instead of
djm
2010-11-13
1
-1
/
+2
*
Add timingsafe_bcmp(3) to libc, mention that it's already in the
matthew
2010-09-24
1
-2
/
+1
*
add an option per-read/write callback to atomicio
djm
2010-09-22
1
-1
/
+10
*
s/timing_safe_cmp/timingsafe_bcmp/g
djm
2010-07-13
1
-2
/
+2
*
implement a timing_safe_cmp() function to compare memory without leaking
djm
2010-07-13
1
-1
/
+2
*
Remove RoutingDomain from ssh since it's now not needed. It can be replaced
dtucker
2010-01-09
1
-4
/
+1
*
validate routing domain is in range 0-RT_TABLEID_MAX.
stevesk
2009-12-25
1
-1
/
+2
*
Allow to set the rdomain in ssh/sftp/scp/sshd and ssh-keyscan.
reyk
2009-10-28
1
-1
/
+3
*
Make keepalive timeouts apply while waiting for a packet, particularly during
dtucker
2008-06-12
1
-1
/
+3
*
Add a small helper function to consistently handle the EAI_SYSTEM error
dtucker
2007-12-27
1
-1
/
+2
*
reorder so prototypes are sorted by the files they refer to; no
djm
2006-08-18
1
-13
/
+13
*
almost entirely get rid of the culture of ".h files that include .h files"
deraadt
2006-08-03
1
-6
/
+1
*
move #include <stdio.h> out of includes.h
stevesk
2006-08-01
1
-1
/
+2
*
Add port identifier to known_hosts for non-default ports, based originally
dtucker
2006-07-10
1
-1
/
+2
*
move #include <pwd.h> out of includes.h; ok markus@
stevesk
2006-07-06
1
-1
/
+5
*
replace {GET,PUT}_XXBIT macros with functionally similar functions,
djm
2006-03-30
1
-2
/
+22
*
standardise spacing in $OpenBSD$ tags; requested by deraadt@
djm
2006-03-25
1
-1
/
+1
*
fix local arbitrary command execution vulnerability on local/local and
djm
2006-01-31
1
-2
/
+6
*
two changes to the new ssh tunnel support. this breaks compatibility
reyk
2005-12-08
1
-2
/
+14
*
Add support for tun(4) forwarding over OpenSSH, based on an idea and
reyk
2005-12-06
1
-1
/
+3
*
ensure that stdio fds are attached; ok deraadt@
djm
2005-09-13
1
-1
/
+2
*
use __sentinel__ attribute; ok deraadt@ djm@ markus@
dtucker
2005-07-14
1
-2
/
+2
*
implement support for X11 and agent forwarding over multiplex slave
djm
2005-07-04
1
-1
/
+2
*
introduce a generic %foo expansion function. replace existing % expansion and
djm
2005-06-06
1
-1
/
+2
*
replace tilde_expand_filename with a simpler implementation, ahead of more
djm
2005-04-09
1
-5
/
+2
*
bz#413: allow optional specification of bind address for port forwardings.
djm
2005-03-01
1
-1
/
+2
*
Fix debug call in error path of authorized_keys processing and fix related
dtucker
2004-12-11
1
-2
/
+2
*
Discard over-length authorized_keys entries rather than complaining when
dtucker
2004-12-06
1
-1
/
+2
*
factor out common permission-asking code to separate function; ok markus@
djm
2004-10-29
1
-1
/
+2
*
some signed/unsigned int comparison cleanups; markus@ ok
avsm
2004-08-11
1
-3
/
+3
*
Add option for confirmation (ControlMaster=ask) via ssh-askpass before opening
djm
2004-06-17
1
-1
/
+2
*
set_nonblock() instead of fnctl(...,O_NONBLOCK); "looks sane" deraadt@
djm
2004-06-14
1
-3
/
+3
*
kill a tiny header; ok deraadt@
djm
2004-05-08
1
-1
/
+13
*
make two tiny header files go away; djm ok
deraadt
2004-05-08
1
-1
/
+3
*
KNF whitespace
markus
2002-03-19
1
-4
/
+4
*
add set_nodelay() to set TCP_NODELAY on a socket (prep for nagle tuning).
stevesk
2002-01-24
1
-1
/
+2
*
remove comments from .h, since they are cut&paste from the .c files
markus
2001-06-26
1
-47
/
+10
*
prototype pedant. not very creative...
itojun
2001-06-26
1
-11
/
+11
*
sshd command-line arguments and configuration file options that
stevesk
2001-05-19
1
-1
/
+25
*
add unset_nonblock for stdout/err flushing in client_loop().
markus
2001-05-11
1
-2
/
+3
*
Use addargs() in sftp plus some clean up of addargs(). OK Markus
mouring
2001-05-08
1
-1
/
+11
*
Move colon() and cleanhost() to misc.c where I should I have put it in
mouring
2001-05-03
1
-1
/
+5
[next]