summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Allow for an unclean shutdown of SSL ports to avoid timeout conditionsBradley Nicholes2003-06-021-4/+17
| | | | | | | between the client and the server. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100138 13f79535-47bb-0310-9956-ffa450edef68
* The right patch (thanks to Eric for identifying the wrong patch) to moveWilliam A. Rowe Jr2003-06-021-1/+1
| | | | | | | | | SSL_library_init() into the register hooks phase. OpenSSL_add_ssl_algorithms devolves to SSL_library_init, which is the same for most toolkits (and would be accomodated in ssl_toolkit_config.h if not.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100136 13f79535-47bb-0310-9956-ffa450edef68
* preserve const-ness while searching for a char in a stringJeff Trawick2003-06-021-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100135 13f79535-47bb-0310-9956-ffa450edef68
* "Comment out .gz etc. AddEncoding lines in our default configuration.Erik Abele2003-06-012-22/+6
| | | | | | | | | | | | | | Current browsers have a tendency to decompress the data when no one really wants it to do that. If you want the old behavior that leads to transparent decompression by modern browsers, uncomment these lines. But, this shouldn't be our default." (see httpd-std.conf.in r1.32, jerenkrantz) Reviewed by: wrowe, slive, nd, erik Also removed the corresponding entry from STATUS. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100131 13f79535-47bb-0310-9956-ffa450edef68
* Added a note, a vote and a section about some necessary docoErik Abele2003-06-011-23/+14
| | | | | | | | | | | improvements. Removed a section about building the man pages from XML source. Also removed a section about possible cross references between the different languages. Both was fixed by Andre recently. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100130 13f79535-47bb-0310-9956-ffa450edef68
* new german translationAstrid Malo2003-06-015-4/+552
| | | | | | | Reviewed by nd git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100129 13f79535-47bb-0310-9956-ffa450edef68
* markup imrovementAstrid Malo2003-06-012-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100128 13f79535-47bb-0310-9956-ffa450edef68
* Allow ExpiresByType to accept and understand minor-type wildcardsKen Coar2003-06-012-3/+43
| | | | | | | | | | | (e.g., text/*). They'll be used if an exact type match isn't found; if there's no wildcard match, the expiry falls back to any ExpiresDefault setting as usual. PR: 7991 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100126 13f79535-47bb-0310-9956-ffa450edef68
* As per repeated discussion on this point, I don't think that anybodyRich Bowen2003-06-011-4/+1
| | | | | | | | | wants to do the maintenance work necessary to keep the FAQ correct if a million monkeys are submitting content. So, to keep it from coming up Yet Again, removing the remark. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100125 13f79535-47bb-0310-9956-ffa450edef68
* More mod_expires tuning. Replace the fixup hook with an insert filterBill Stoddard2003-06-012-96/+33
| | | | | | | hook. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100124 13f79535-47bb-0310-9956-ffa450edef68
* Revert revision 1.81 which called non-existent SSL_load_library.Justin Erenkrantz2003-05-311-1/+1
| | | | | | | | No idea where this was seen, but OpenSSL 0.9.7b does not have this. This gets mod_ssl working again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100122 13f79535-47bb-0310-9956-ffa450edef68
* some markup improvementAstrid Malo2003-05-312-115/+118
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100118 13f79535-47bb-0310-9956-ffa450edef68
* Fixing up the NetWare headers to be compatible with the GNU compilerBradley Nicholes2003-05-311-5/+7
| | | | | | | Submitted by: G�nter Knauf <gk@gknw.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100116 13f79535-47bb-0310-9956-ffa450edef68
* Add mod_charset_lite to the NetWare build.Bradley Nicholes2003-05-312-0/+260
| | | | | | | Submitted by: G�nter Knauf <gk@gknw.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100113 13f79535-47bb-0310-9956-ffa450edef68
* OpenSSL_add_all_algorithms is simply an alias for SSL_load_library.William A. Rowe Jr2003-05-301-1/+1
| | | | | | | | | | Note that the entire schema of what-we-load-how follows from OpenSSL 0.9.7's own apps/ example applications. More review is greatly desired, but that's where I believed I should start looking for the 'correct' order of operations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100110 13f79535-47bb-0310-9956-ffa450edef68
* Provide a far more useful explanation when SSLCryptoDevice fails toWilliam A. Rowe Jr2003-05-301-10/+12
| | | | | | | | | | | | | find a device. Still would be nice to implement dynamic:{options} but this gets us to display the usual, builtin devices. We now load builtin engines up front, in the pre_config phase, because this and any other config cmd processor must have an already valid library config. So loading builtin engines becomes redundant in this cmd handler. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100108 13f79535-47bb-0310-9956-ffa450edef68
* Solve a pretty horrific bug in SSLCryptoDevice and other places whereWilliam A. Rowe Jr2003-05-302-15/+13
| | | | | | | | | the config cmd processors should be examining the SSL context. We must initialize the SSL library before we can actually obtain any useful information from the SSL library. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100107 13f79535-47bb-0310-9956-ffa450edef68
* Based on list discussion between myself and Geoff, it seems prudentWilliam A. Rowe Jr2003-05-304-5/+12
| | | | | | | | | | | | | | to check for both the existence of the openssl/engine.h header file and some 'expected function' such as ENGINE_init() (better suggestions are welcome.) Also clear up some confusion; so long as we have ENGINE_load_builtin_engines() we should attempt to preload those. This patch protects all ENGINE-based code within the tests for the engine header and function, and changes a version test into a function test. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100104 13f79535-47bb-0310-9956-ffa450edef68
* Use apr_table_overlap. Add note about additional brokeness of fast-redirectBill Stoddard2003-05-301-2/+8
| | | | | | | fooness git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100102 13f79535-47bb-0310-9956-ffa450edef68
* syncAndré Malo2003-05-301-4/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100101 13f79535-47bb-0310-9956-ffa450edef68
* Rework of the recursion stopper - collapse recursion counters into one functionAndré Malo2003-05-304-81/+61
| | | | | | | Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100095 13f79535-47bb-0310-9956-ffa450edef68
* done.André Malo2003-05-291-6/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100092 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2003-05-29286-572/+1404
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100088 13f79535-47bb-0310-9956-ffa450edef68
* - add rel="alternate" attributeAndré Malo2003-05-291-3/+10
| | | | | | | | - use rel and hreflang attribute only if the link points to another language - add newlines for better diffs (the next will be a huge one ...) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100087 13f79535-47bb-0310-9956-ffa450edef68
* - revert my patch (r1.155) since it produces regressions.André Malo2003-05-293-28/+18
| | | | | | | - add a note to STATUS that we don't forget the thing. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100086 13f79535-47bb-0310-9956-ffa450edef68
* Add a voteAstrid Malo2003-05-291-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100083 13f79535-47bb-0310-9956-ffa450edef68
* change aversion numberAstrid Malo2003-05-282-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100080 13f79535-47bb-0310-9956-ffa450edef68
* - add simplified chinese welcome pageAndré Malo2003-05-284-0/+35
| | | | | | | | | | - add .zh-cn extension for zh-CN language code to default config. Submitted by: kajaa <kajaa@eastday.com> Reviewed by: <yinglichina@sina.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100075 13f79535-47bb-0310-9956-ffa450edef68
* [Porting] Include <sys/mutex.h> if available, to get lock_t typedef for ↵Martin Kraemer2003-05-281-0/+3
| | | | | | using <sys/shm.h> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100070 13f79535-47bb-0310-9956-ffa450edef68
* thought I changed that damn module name ...Astrid Malo2003-05-282-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100054 13f79535-47bb-0310-9956-ffa450edef68
* use german stylesheetAstrid Malo2003-05-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100048 13f79535-47bb-0310-9956-ffa450edef68
* syncAndré Malo2003-05-271-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100047 13f79535-47bb-0310-9956-ffa450edef68
* remove comment delimitersAstrid Malo2003-05-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100046 13f79535-47bb-0310-9956-ffa450edef68
* Silly cut'n'paste errorWilliam A. Rowe Jr2003-05-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100042 13f79535-47bb-0310-9956-ffa450edef68
* These tests now exist in acinclude.m4William A. Rowe Jr2003-05-271-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100041 13f79535-47bb-0310-9956-ffa450edef68
* Clean up the OpenSSL/SSL-C tests...William A. Rowe Jr2003-05-271-28/+56
| | | | | | | | | | | | | | | OpenSSL must remain a 'higher priority' than picking up sslc headers (especially since openssl headers are clearly namespace decorated.) Introduce a --with-sslc flavor to override this priority ordering. Test the now-current safe flavors of OpenSSL/SSL-C (which gets tricky with OpenSSL 0.9.6j/0.9.7b safe flavors.) Reorder variables restoration to preceed error reporting/failure. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100040 13f79535-47bb-0310-9956-ffa450edef68
* Any library could benefit from SSL_set_cert_store(), if the libraryWilliam A. Rowe Jr2003-05-271-1/+1
| | | | | | | sources have been patched. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100039 13f79535-47bb-0310-9956-ffa450edef68
* As Geoff Thorpe <geoff@geoffthorpe.net> points out, we must perform ourWilliam A. Rowe Jr2003-05-271-0/+4
| | | | | | | | | | | | | | | | compilation tests for the SSL_has_foo functions while we have completely populated the config with 'standard' libraries from our apr configuration. This allows us to compile more complex dependencies such as the test for ENGINE_init(), which also requires -lsockets etc on Solaris for any static build of OpenSSL. If this fails, we will have to research using the pkgconfig/openssl.pc configuration to perform these precompile tests. This restores the various HAVE_SSL_{FOO} macros for SSL-C and introduced the proper test for HAVE_ENGINE_INIT. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100038 13f79535-47bb-0310-9956-ffa450edef68
* Sync Japanese translation.Yoshiki Hayashi2003-05-2717-17/+17
| | | | | | | Submitted by: Hiroaki KAWAI <hawk@bcl.t.u-tokyo.ac.jp> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100033 13f79535-47bb-0310-9956-ffa450edef68
* TypoAstrid Malo2003-05-262-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100032 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAstrid Malo2003-05-253-219/+280
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100031 13f79535-47bb-0310-9956-ffa450edef68
* translate new directive LimitInternalRecursion and update the restAstrid Malo2003-05-251-21/+84
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100030 13f79535-47bb-0310-9956-ffa450edef68
* correct a module reference, thx ndAstrid Malo2003-05-252-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100029 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAstrid Malo2003-05-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100028 13f79535-47bb-0310-9956-ffa450edef68
* typoAstrid Malo2003-05-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100027 13f79535-47bb-0310-9956-ffa450edef68
* Opps. Copy/Paste problemBradley Nicholes2003-05-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100024 13f79535-47bb-0310-9956-ffa450edef68
* Copy the .XDC data file during the installdev make process. This allows otherBradley Nicholes2003-05-241-0/+1
| | | | | | | | | modules to link same .XDC data file used by the httpd and APR builds. Submitted by: G�nter Knauf <gk@gknw.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100022 13f79535-47bb-0310-9956-ffa450edef68
* remove commaAndré Malo2003-05-234-4/+4
| | | | | | | Submitted by: Joshua Slive git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100020 13f79535-47bb-0310-9956-ffa450edef68
* The patch below reverts the prior commit to eliminate SSL_set_state().William A. Rowe Jr2003-05-224-2/+17
| | | | | | | | | | | | | | | | | | | | | | | Some additional work or research is required in order to pass the perl-framework regressions, but I don't have the cycles and don't care to leave the broken code in cvs HEAD. REVERTING: wrowe 2003/05/19 08:13:19 Modified: modules/ssl config.m4 ssl_engine_io.c ssl_engine_kernel.c ssl_toolkit_compat.h Log: Drop SSL_set_state() in favor of a proper SSL_renegotiate() to begin rehandshaking the SSL connection, vis-a-vis ApacheSSL. Revision Changes Path 1.15 +0 -1 httpd-2.0/modules/ssl/config.m4 1.108 +1 -1 httpd-2.0/modules/ssl/ssl_engine_io.c 1.93 +1 -1 httpd-2.0/modules/ssl/ssl_engine_kernel.c 1.34 +0 -6 httpd-2.0/modules/ssl/ssl_toolkit_compat.h git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100004 13f79535-47bb-0310-9956-ffa450edef68
* Add the copyright notice in the NetWare make filesBradley Nicholes2003-05-221-0/+6
| | | | | | | Submitted by: G�nter Knauf <gk@gknw.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100001 13f79535-47bb-0310-9956-ffa450edef68