Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-19 | store compat flags in struct ssh; ok djm@ | 4 | -12/+15 | ||
2015-01-19 | Oops, missed the new #include when manually applying the diff from | 1 | -1/+3 | ||
Helg (xx404 (at) msn.com) | |||||
2015-01-19 | adapt kex to sshbuf and struct ssh; ok djm@ | 24 | -1149/+1701 | ||
2015-01-19 | `wellspring' Apple keyboards found on Macbook Air need slightly different | 1 | -9/+66 | ||
processing for Fn-key chords. From William Orr <will@worrbase.com> | |||||
2015-01-19 | Fix bracing in ASSERT_VP_ISLOCKED(vp) macro to not always panic() | 1 | -5/+6 | ||
From Helg (xx404 (at) msn.com) | |||||
2015-01-19 | move dispatch to struct ssh; ok djm@ | 13 | -145/+253 | ||
2015-01-19 | Log the remote user in the access.log. | 1 | -8/+10 | ||
Pointed out by, tweak & OK reyk@ | |||||
2015-01-19 | s/clt_fcgi_remote_user/clt_remote_user/ | 3 | -11/+11 | ||
OK reyk@ | |||||
2015-01-19 | Move doaccept() declaration from its .c file to sys/socketvar.h for use | 2 | -4/+4 | ||
by compat/linux | |||||
2015-01-19 | update packet.c & isolate, introduce struct ssh | 28 | -1879/+2535 | ||
a) switch packet.c to buffer api and isolate per-connection info into struct ssh b) (de)serialization of the state is moved from monitor to packet.c c) the old packet.c API is implemented in opacket.[ch] d) compress.c/h is removed and integrated into packet.c with and ok djm@ | |||||
2015-01-19 | Delete ABI compat for osockaddr: 20 years and many ABI bumps since sa_len added | 1 | -5/+1 | ||
ok krw@ bluhm@ deraadt@ | |||||
2015-01-19 | Prefer strdup() to malloc() + strcpy() and ftello() to ftell() | 1 | -5/+3 | ||
ok deraadt@ guenther@ millert@ | |||||
2015-01-19 | Decouple auth parameters from struct server_config into struct auth. | 8 | -39/+236 | ||
OK florian@ | |||||
2015-01-19 | Does not need netinet/ip_ipsp.h | 1 | -2/+1 | ||
2015-01-19 | Also print the fspace member of map entries when PRINT_VM_MAP_ENTRY is | 1 | -2/+4 | ||
requested. ok deraadt@ | |||||
2015-01-19 | Remove dead store causing clang to warn; dhill | 1 | -2/+1 | ||
2015-01-19 | use SYMLOOP_MAX rather than MAXSYMLINKS | 1 | -2/+2 | ||
2015-01-19 | mikeb points out that 'struct ipsec_policy' can also be hidden by _KERNEL | 1 | -5/+1 | ||
2015-01-19 | remove #ifndef #define blocks trying to handle lack of BUFSIZ | 4 | -18/+4 | ||
ok millert | |||||
2015-01-19 | mlk jr day is the third monday, and not just for new york. | 2 | -3/+3 | ||
from richard | |||||
2015-01-19 | SYMLOOP_MAX == MAXSYMLINKS, so use SYMLOOP_MAX | 1 | -2/+2 | ||
2015-01-19 | Kill loadavg.h and just use the fscale value directly. | 2 | -104/+3 | ||
There's no need for crazy casts of p_pctcpu in ORDERKEY_PCTCPU since kinfo_proc exports it as uint32_t. OK deraadt@ | |||||
2015-01-19 | sparc also needs <machine/param.h> for CPU_SUN*. | 1 | -1/+2 | ||
2015-01-19 | fix format strings in (disabled) debugging | 1 | -4/+4 | ||
2015-01-19 | this test was broken in at least two ways, such that it | 1 | -7/+9 | ||
wasn't checking that a KRL was not excluding valid keys | |||||
2015-01-19 | First step of hiding many kernel-only parts of <netinet/ip_ipsp.h> | 2 | -4/+14 | ||
under _KERNEL, and adjust the one consumer (netstat) so that it requests the exposure. Will take a few more rounds to get this right. ok mikeb | |||||
2015-01-19 | cleanup of the SMALL hiding from Mathias Svensson | 1 | -2/+4 | ||
2015-01-19 | Replace HOST_NAME_MAX+1 with NI_MAXHOST when the hostname is used | 2 | -11/+13 | ||
with getaddrinfo() or getnameinfo(), but keep HOST_NAME_MAX+1 when the hostname comes from gethostname(). No binary change; OK deraadt@ | |||||
2015-01-19 | Make use of an msr available on recent Intel processors to obtain the | 4 | -25/+78 | ||
maximum supported temperature, Tj(Max). As the temperature values are relative to this value this should make the sensor values more accurate. From Simon Mages. | |||||
2015-01-19 | Explicitly mention that PATH_MAX includes the NUL in the ENAMETOOLONG | 32 | -197/+226 | ||
description. | |||||
2015-01-19 | Make some $OpenBSD$ lines prettier/standardier by eliminating | 13 | -13/+13 | ||
superflous '*' after '/*' and adding blank after terminating '$'. Also eases parsing of the lines by simple awk scripts. Aesthetic approval from tedu@. | |||||
2015-01-19 | Remove unnecessary <netinet/ip_ipsp.h> includes | 4 | -8/+4 | ||
2015-01-19 | Back out changes unrelated to the ENAMETOOLONG diff. | 1 | -15/+13 | ||
2015-01-19 | <netinet6/in6_ifattach.h> is not needed here. | 2 | -4/+2 | ||
2015-01-19 | remove a couple of unused headers. | 1 | -3/+1 | ||
reported by Jonas 'Sortie' Termansen | |||||
2015-01-19 | Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR. | 1 | -2/+2 | ||
2015-01-19 | Only care about other permissions, allow group to be set. | 1 | -2/+2 | ||
2015-01-19 | Remove unnecessary duplicate S_ISDIR check, from Dmitri Paduchikh. | 1 | -3/+2 | ||
2015-01-19 | add a specialized version of version compares that should not update | 2 | -6/+16 | ||
everything all the time, at the bequest of aja. (basically, we updated everything when runtime dependencies changed, even though we actually only care for wantlib, and hard dependencies, but those trigger bumps all over the tree) Experimental for now, turn on with -DSHORTENED. Likely to become the new default if nothing bad comes out of it. | |||||
2015-01-19 | If SIGUSR1 and SIGUSR2 are unavailable, don't invent something crazy | 1 | -11/+1 | ||
honouring systems before 4.3BSD. | |||||
2015-01-19 | replace local MIN() with MINIMUM() | 1 | -5/+3 | ||
2015-01-19 | pass the size of the softc to free. | 1 | -2/+4 | ||
ok deraadt@ | |||||
2015-01-19 | be a bit more careful in these tests to ensure that | 2 | -18/+25 | ||
known_hosts is clean | |||||
2015-01-19 | white space fixes. no binary change. | 1 | -7/+7 | ||
2015-01-19 | gcc does not understand that the loop conditionally sets bsod before | 1 | -1/+2 | ||
using it, so it warns... Copy the warning silencing code from the same function in ../ld.so | |||||
2015-01-19 | like in ps(1), fetch the FSCALE value using sysctl rather than using | 3 | -3/+24 | ||
the header version ok guenther | |||||
2015-01-19 | move to <limits.h> universe | 29 | -111/+105 | ||
ok yasuoka | |||||
2015-01-19 | CMASK went out of scope with the recent <sys/param.h> removal. But oh | 1 | -6/+2 | ||
golly gee, ftpd can handle that itself due to the glorious old practice of #ifndef #define. Remove that junk. ok guenther | |||||
2015-01-19 | unneccessary cmask variable; ok guenther | 2 | -5/+3 | ||
2015-01-19 | If UID_MAX is not defined, this should fail to compile. | 1 | -8/+1 | ||
ok guenther |