| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | allow httpd to build if sslv2 is disabled, ok guenther@ | 2012-07-07 | 1 | -5/+2 | |
| | | |||||
| * | In preparation for getline and getdelim additions to libc, rename getline() | 2012-03-04 | 3 | -10/+10 | |
| | | | | | | occurrences to get_line(). Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech. | ||||
| * | Apply the fnmatch recursion limit fix to the local copy of fnmatch in httpd. | 2011-09-17 | 1 | -4/+29 | |
| | | | | | ok henning | ||||
| * | typo in usage summary | 2011-07-17 | 1 | -2/+2 | |
| | | |||||
| * | Avoid using NULL in non-pointer contexts: use 0 for integer values and '\0' | 2011-04-06 | 1 | -3/+3 | |
| | | | | | for chars. | ||||
| * | Local variables storing integer values and printed with %d should be | 2011-04-06 | 1 | -2/+3 | |
| | | | | | declared as integer types, not pointers, really. | ||||
| * | - properly fix pr6009. a different fix was commited as the original patch | 2011-01-05 | 1 | -1/+7 | |
| | | | | | | | | used atoi(). this fix uses strtonum() instead. from bjorn ketelaars, pr6515. ok henning@ | ||||
| * | adapt to API changes in OpenSSL-1.0.0a | 2010-10-01 | 1 | -5/+5 | |
| | | |||||
| * | Allow mod_headers to handle RequestHeader directives known from apache2, | 2010-09-26 | 1 | -6/+42 | |
| | | | | | | | | | and update documentation accordingly. Patch mostly based on an old patch from Martin Algesten he posted 2002 in apache bugzilla entry: 10772 OK, pyr@ | ||||
| * | nessesary -> necessary. | 2010-09-09 | 1 | -2/+2 | |
| | | |||||
| * | add an EXIT STATUS section for /usr/sbin; | 2010-09-03 | 2 | -8/+6 | |
| | | |||||
| * | Various comment typos. 'wether' -> 'whether' (most popular), 'possiblity' -> | 2010-05-10 | 2 | -3/+3 | |
| | | | | | | 'possibility', 'optins' -> 'options', 'resposne' -> 'response', 'unecessary' -> 'unnecessary', 'desination' -> 'destination'. Collected from various misc@ and tech@ postings, many by Brad Tilley. | ||||
| * | Unconditionally set HAVE_ISINF and HAVE_ISNAN in the generated | 2010-05-05 | 1 | -32/+11 | |
| | | | | | | | | ap_config_auto.h. We know we have these functions in libc on OpenBSD, but the check for them fails with gcc due to some __builtin__xxx stupidity. ok drahn@, sthen@, henning@ | ||||
| * | make ProxyPass exclude directives only exclude on match, instead of always | 2010-03-31 | 1 | -3/+3 | |
| | | | | | | | noted by Vasiliy Kiryanov, thanks! ok stephan@ | ||||
| * | - apache would send the wrong Host-Header back when setup as a reverse proxy | 2010-02-25 | 1 | -1/+1 | |
| | | | | | | | | | with ProxyPreserveHost. fixes pr6009, though i applied a different fix as what was suggested in that pr. ok sthen@ | ||||
| * | fix some fallout from the >2G commit. namely allow for all byte counters to | 2010-02-25 | 9 | -35/+35 | |
| | | | | | | | report the correct size when it exceeds a long's capacity. From Dan Harnett <daniel @ harnett . name> | ||||
| * | Fix byte range parsing, broken in last revision of http_protocol.c, | 2010-02-23 | 4 | -24/+20 | |
| | | | | | | | | | | unfortunately this backs out the use of strtonum and goes back to strtoll will need more love in a future diff. This fix from Dan Harnett <daniel @ harnett . name> ok deraadt@ | ||||
| * | Add a SECURITY FIX for CVE-2010-0010 | 2010-02-03 | 1 | -3/+3 | |
| | | | | | | | | | | "on 64-bit platforms this allows remote origin servers to cause a denial of service (daemon crash) or possibly execute arbitrary code via a large chunk size that triggers a heap-based buffer overflow." "looks good" to henning@ ok otto@ | ||||
| * | could write one word too far, found by parfait; ok millert | 2009-12-14 | 1 | -1/+1 | |
| | | |||||
| * | wrote one byte too far, found by parfait; ok beck millert | 2009-12-14 | 1 | -2/+2 | |
| | | |||||
| * | repair type | 2009-12-13 | 1 | -1/+1 | |
| | | |||||
| * | copy correctly sized object, found by parfait; ok jsg | 2009-12-13 | 1 | -1/+1 | |
| | | |||||
| * | s/Mhz/MHz/, MHz is a multiple of the SI unit hertz (whose symbol is Hz). | 2009-10-31 | 1 | -2/+2 | |
| | | |||||
| * | Add ! support to ProxyPass to exclude directories from being proxied. | 2009-08-26 | 1 | -0/+3 | |
| | | | | | | From Stephan A. Rickauer <stephan dot rickauer at startek dot ch> with minor tweaks. ok by many. | ||||
| * | fix rcs ids. ok sthen@ | 2009-06-21 | 3 | -3/+3 | |
| | | |||||
| * | add RCFLAGS to config test cases | 2009-06-04 | 1 | -3/+3 | |
| | | | | | ok henning@ | ||||
| * | Fix the way apache reports Content-Length by promoting the clength field | 2009-06-02 | 3 | -26/+31 | |
| | | | | | | | | | | | | | of request_rec from long to off_t, which makes it 64bit on i386. This allows files bigger than 2gig to be correctly served on arches where long is only 32bits. Warning: this introduces an ABI break, and hence some third party apache modules will need to be rebuilt to correctly link to this new apache. ok miod@, deraadt@ | ||||
| * | by default drop privs to www/www, not nobody/nogroup if User/Group | 2009-03-10 | 1 | -3/+3 | |
| | | | | | | entries are not present; or it's being run configless "sure" henning@, "makes sense" merdely@, ok sthen@ | ||||
| * | update ap_config_auto.h for new libc | 2008-12-09 | 1 | -0/+10 | |
| | | |||||
| * | Some more ambigous -> ambiguous pointed out by mbalmer (there are | 2008-12-03 | 1 | -1/+1 | |
| | | | | | | others, these are the ones from code unlikely to be re-merged with upstream sources). | ||||
| * | correct spelling (ambigous -> ambiguous) | 2008-12-02 | 1 | -4/+4 | |
| | | |||||
| * | Don't exit if the logfile specified on the command line can not be | 2008-10-06 | 1 | -16/+19 | |
| | | | | | | | created due to a path component not existing, but log the error and retry. This will repeatetly log an error, like it does without the patch, but it will not slowly eat up memory. This fixes pr 4228. | ||||
| * | Readability changes. | 2008-10-03 | 1 | -4/+4 | |
| | | |||||
| * | KNF and readability changes; no binary changes. | 2008-10-03 | 1 | -789/+780 | |
| | | |||||
| * | Use correct function signature when calling the write_host_header hook. | 2008-10-03 | 2 | -1/+11 | |
| | | | | | from Josh Elsasser <josh@elsasser.org>, thanks. | ||||
| * | adapt to API changes in OpenSSL 0.9.8h | 2008-09-06 | 1 | -1/+1 | |
| | | |||||
| * | Use only safe functions in signal handlers. | 2008-08-11 | 2 | -6/+9 | |
| | | | | | ok millert, otto | ||||
| * | isinf/isnan are macros now, therefore ap_config_auto.h differ. regen | 2008-07-24 | 1 | -10/+0 | |
| | | | | | from sthen@. discussed w/ millert@. "yep" sthen@. | ||||
| * | more negotation -> negotiation; ok sthen@ | 2008-07-22 | 4 | -7/+7 | |
| | | |||||
| * | Make the proxy module work with https again by allowing the destination | 2008-07-04 | 2 | -5/+12 | |
| | | | | | | | | | port to be set in the config file instead of using HTTP_DEFAULT_PORT in all cases. Prevent a segfault that would happen when the SSL connection from the proxy fails. Problem found and analyzed by Mischa Diehm; fix by me. | ||||
| * | Move the Apache manual out of etcXX and to miscXX where it belongs. | 2008-06-07 | 5 | -15/+15 | |
| | | | | | | | | | It has also been moved to /usr/share/doc/html/httpd/. This will ease sysmerge upgrades and help keep htdocs clean. Help from okan and phessler, doc tweaks by jmc ok deraadt@ millert@ beck@ | ||||
| * | grammar fixes; from Jochem Kossen, system/5822; | 2008-05-27 | 1 | -13/+13 | |
| | | | | | ok henning | ||||
| * | de-register, remove #ifdefs and #ifndefs using SIN6_LEN, add OpenBSD cvs | 2008-05-25 | 11 | -82/+74 | |
| | | | | | | | markers. no binary changes | ||||
| * | KNF and readability changes. de-register, remove #ifndef SIN6_LEN defines. | 2008-05-23 | 7 | -1280/+1233 | |
| | | | | | | | Add OpenBSD cvs markers. No binary changes. | ||||
| * | de-register | 2008-05-23 | 3 | -21/+21 | |
| | | |||||
| * | Last chunk of KNF and readability changes here. | 2008-05-23 | 1 | -231/+241 | |
| | | | | | no binary changes. | ||||
| * | More KNF and readability. | 2008-05-22 | 1 | -638/+669 | |
| | | | | | no binary changes. | ||||
| * | KNF and readability changes. | 2008-05-21 | 1 | -437/+468 | |
| | | | | | No binary changes. | ||||
| * | Remove #ifndef SIN6_LEN/#else/#endif constructs. | 2008-05-21 | 4 | -63/+9 | |
| | | | | | Suggested by djm a while ago. No binary changes. | ||||
| * | Document and implement -U option, fix usage information for '-?'. | 2008-05-21 | 1 | -3/+9 | |
| | | | | | Documentation corrections and spelling by jmc. | ||||
