summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2016-08-30Do not assume that the full http response header is in the firstFlorian Obser
fastcgi stdout record. Keep processing stdout records until we found the header / body separator and only then generate the header response. Problem reported by many. OK jung@
2016-08-29Add more information to syslogd tls config error messages.Alexander Bluhm
OK millert@
2016-08-28Pull in <time.h> for tzset()Philip Guenther
2016-08-27in case we run delete_first (not enough room), delay the unlink ofMarc Espie
tied items so we can still skip extracting them. better than the stopgap measure I committed a few weeks ago.
2016-08-27Kill p_instance from proc.c and remove static proc_id unused variables.Rafael Zalamena
To keep the debug functionality intact and correct we'll use the pid field in the imsg header to pass the instance number. Remember to always pass 'ps_instance + 1' otherwise libutil will fill imsg header pid field with the imsgbuf pid (which is the current process pid). ok reyk@
2016-08-27Add missing $OpenBSD$ line and remove an unnecessary comment line.YASUOKA Masahiko
2016-08-27Move up the <stdio.h> include so <dev/pci/*.h> have NULLPhilip Guenther
ok deraadt@
2016-08-27Pull in <sys/select.h> for fd_setPhilip Guenther
ok deraadt@
2016-08-27Pull in <sys/time.h> for gettimeofday()Philip Guenther
ok deraadt@
2016-08-27Pull in <sys/time.h> for struct timespec, timeval, or clockratePhilip Guenther
ok deraadt@
2016-08-27Pull in <sys/time.h> for gettimeofday()Philip Guenther
ok deraadt@
2016-08-27Use %zu for size_t argumentsPhilip Guenther
2016-08-27Pull in <time.h> for one or more of gmtime, strftime, strptime, time,Philip Guenther
timegm, and tzset ok deraadt@
2016-08-26grrr warningMarc Espie
2016-08-26Kill the ps_ninstances from proc.c.Rafael Zalamena
We got the same information in ps_instances[proc] (more accurate) and we avoid allocating unnecessary memory for pipe storage. ok reyk@
2016-08-26Replace the static env variables with a single global variable.Rafael Zalamena
ok reyk@
2016-08-25-F before -f (as -I before -i currently is...);Jason McIntyre
2016-08-25make the full filesystem check optional, by popular demand.Marc Espie
doubling -q removes the plist thorough check.
2016-08-25goda@ contributed most of the OpenFlow 1.3.5 parts in ofp.h (for theReyk Floeter
"still-unreleased" switch(4) driver), so it is only fair to add his copyright. This header file will eventually move to net/ofp.h.
2016-08-25Fix rtadvd.conf(5) example for pinfoflags, it accepts numbers not strings.Stuart Henderson
ok phessler
2016-08-25remove lint commentsTed Unangst
2016-08-22Enable SNI support in httpd(8).Joel Sing
ok reyk@
2016-08-21introduce a union of sockaddr types and eliminate a lot of casts.Ted Unangst
2016-08-20Properly initialize the message parser. fix a regression where theEric Faurot
message headers would not be altered as expected. ok gilles@
2016-08-20Tweak timer debug output.Jeremie Courreges-Anglas
-RA timer on em0 is set to 16:0 +RA timer on em0 is set to 16.0s
2016-08-20Move counters from u_quad_t to uint64_t.Jeremie Courreges-Anglas
Printing is already done with %llu/(unsigned long long) casts.
2016-08-19make smtpd less verbose at startupEric Faurot
ok gilles@ sunil@ jung@ millert@
2016-08-18use a more standard page layout; ok mlarkinJason McIntyre
2016-08-18word fix, from remi locherer; ok reykJason McIntyre
2016-08-18various fixes for previous;Jason McIntyre
2016-08-18init a variable to address https://kb.isc.org/article/AA-01272Jonathan Gray
Most of bind got removed and this function is not called by any of the remaining parts. ok deraadt@ a long time ago.
2016-08-18fix fd leaks in error pathsJonathan Gray
ok reyk@
2003-01-20ISC BIND version 9.2.2rc1Jakob Schlyter
2016-08-18add section on VM networking. more to come, this is a starting point forMike Larkin
further documentation.
2016-08-17By using the new tls_config_load_file() feature, syslogd(8) certificateAlexander Bluhm
and key loading can be simplified. OK jsing@
2016-08-17pluralize a wordPeter Hessler
2016-08-17The man page is a bit confusing for how we can control which addressPeter Hessler
families we support during capabilities negotiation. Re-organize the man page to be more clear, and explicitly state what the default is. OK sthen@ benno@
2016-08-17small bits of header cleanup; ok mlarkinTheo de Raadt
2016-08-17KNF and clean up many comments.Kenneth R Westerback
2016-08-17Ansify function definitions.Kenneth R Westerback
Diff from Edgar Pettijohn.
2016-08-16stop including sys/param.h for nitems. define locally as needed.Ted Unangst
ok natano reyk
2016-08-16doesn't need to link with cryptoTed Unangst
2016-08-16remove reference to 6th ed.Ted Unangst
2016-08-16Turn "TLS handshake failed -" log message into a debug message - itReyk Floeter
happens way too often and does not provide much information. OK jung@
2016-08-16Nuke a bunch of whitespace nits seen while '%q' hunting.Kenneth R Westerback
2016-08-16Xr encrypt(1) here as well to be consistent with useradd(8).Theo Buehler
ok jmc
2016-08-16Rename server_handshake_tls() to server_tls_handshake() to align withReyk Floeter
the other server_tls_* functions (and I like the prefix notation better). No functional change.
2016-08-16As suggested by the FastCGI spec, zero-pad the response buffers to beReyk Floeter
aligned to 8 bytes. This matches what most other implementations are doing. While here, make sure that the allocated response buffers are zero'ed out. OK florian@
2016-08-15Move server_match() from parse.y to server.c; use env instead of conf,Joel Sing
which is actually the same thing (cluebat from reyk@).
2016-08-15Use lowercase 'tls' in debug and log messages for consistency.Joel Sing
Requested by reyk@