summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/server.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* httpd(8) sent a 408 response every time a connection request timeoutflorian2019-10-141-2/+5
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-3/+3
* httpd(8): add support for setting custom FastCGI parameters.pirofti2019-02-191-1/+10
* Allow httpd(8) to start when TLS is configured but a cert is not yetflorian2019-01-081-1/+12
* Backout my previous commit:benno2018-10-111-5/+3
* Only send 408 Timeout responses when we have seen at least part of abenno2018-10-011-3/+5
* Add support for client certificate authentication to httpd.jsing2018-05-191-2/+69
* Don't do OCSP stapling only if the staple file is 0 length.beck2017-11-291-3/+3
* Disable oscp stapling on invalid staple, rather than failing to start.beck2017-11-281-3/+13
* Convert httpd to tls_config_set_ecdhecurves(), allowing a list of curvesjsing2017-08-111-5/+5
* Rework the way that TLS configuration is sent/received via imsgs, so thatjsing2017-07-191-2/+2
* some freezero() callsderaadt2017-04-171-15/+5
* Implement TLS ticket support in httpd. Off by default. Useclaudio2017-03-251-1/+64
* /tmp/cvsspEkokreyk2017-02-071-3/+3
* Fix support for HTTP pipelining by handling all requests in the buffer.reyk2017-02-021-3/+1
* remove extra call setting OCSP staple now that it is done abovebeck2017-01-311-10/+1
* Correct mistake I made when converting this to new funcitonbeck2017-01-311-2/+3
* Add tls_config_[add|set]keypair_ocsp functions so that ocsp staples may bebeck2017-01-311-15/+8
* Do not set EVBUFFER_EOF on read/write errors and handle EOF correctly.reyk2017-01-311-4/+8
* Stop accessing verbose and debug variables from log.c directly.reyk2017-01-091-3/+2
* Check the return value of tls_config_set_protocols(), now that it returnsjsing2016-11-171-4/+7
* Move OCSP loading into a separate function - it is not part of the keypairjsing2016-11-171-16/+23
* Fix tcp ip ttl / minttl on IPv6 sockets.jca2016-11-101-7/+25
* conditionalize ocsp load properlybeck2016-11-061-8/+10
* Add OCSP stapling support to httpdbeck2016-11-061-1/+32
* Kill (remove) the ps_pid from privsep struct since it is not being usedrzalamena2016-08-301-5/+3
* Kill p_instance from proc.c and remove static proc_id unused variables.rzalamena2016-08-271-9/+1
* Replace the static env variables with a single global variable.rzalamena2016-08-261-23/+21
* Enable SNI support in httpd(8).jsing2016-08-221-6/+27
* stop including sys/param.h for nitems. define locally as needed.tedu2016-08-161-2/+1
* Turn "TLS handshake failed -" log message into a debug message - itreyk2016-08-161-2/+2
* Rename server_handshake_tls() to server_tls_handshake() to align withreyk2016-08-161-6/+6
* Move server_match() from parse.y to server.c; use env instead of conf,jsing2016-08-151-1/+28
* Use lowercase 'tls' in debug and log messages for consistency.jsing2016-08-151-6/+6
* Make httpd stricter with respect to TLS configuration - in particular, dojsing2016-08-151-1/+25
* Include the TLS configuration errors in log messages. Also set thejsing2016-04-281-11/+11
* Use log_warnx() instead of log_warn() when the failure will not havejsing2016-04-191-10/+10
* sync with relayd, use proc_compose()reyk2015-12-021-3/+2
* Retire socket_set_blockmode() in favor of the SOCK_NONBLOCK type flag.reyk2015-11-231-7/+3
* pledge(2) for httpd.florian2015-11-051-1/+4
* Fix server_handshake_tls() - we should only call server_input() in the casejsing2015-09-111-8/+6
* fix return type for tls_read/writebeck2015-09-101-3/+3
* fix after libtls api changesbeck2015-09-101-12/+12
* Update httpd to call tls_handshake() after tls_accept_socket().jsing2015-09-101-12/+16
* Fix a regression that was introduced with server.c r1.64: Do NOT freereyk2015-09-071-2/+1
* Change httpd(8) to use C99-style fixed-width integers (uintN_t insteadreyk2015-08-201-3/+3
* Fix rev 1.70 of server.c by only re-enabling the bufferevent if weflorian2015-08-031-4/+8
* backout the previous: it broke wordpress somehow.reyk2015-07-291-3/+1
* Read fcgi response records until we have the whole http header and canflorian2015-07-291-1/+3
* libtls has been changed to set SSL_MODE_ENABLE_PARTIAL_WRITE andreyk2015-07-181-24/+5