- Aug 16, 2001
-
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90229 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90227 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90225 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More Versioning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90208 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
add support for renegotiation during the Access hook this requires hooking into the read and write SSL BIOs in order to flush data to the client and read from the filter chain this also requires that the ssl filters become "aware" that renegotitation is in progress so that the BIOs are left alone for SSL_renegotiate/SSL_do_handshake in ssl_hook_Access to deal with PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90185 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 14, 2001
-
-
Doug MacEachern authored
if != APR_SUCCESS the ssl connection has been shutdown (for example client cert was revoked) PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90155 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 08, 2001
-
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90030 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90027 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90023 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90022 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 07, 2001
-
-
William A. Rowe Jr authored
Update for the 2.0.23 tag git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89994 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89987 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 02, 2001
-
-
William A. Rowe Jr authored
Fix typo in prior commit git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89873 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Adapt to changed declaration of apr_pool_sub_make() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89871 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 31, 2001
-
-
William A. Rowe Jr authored
Ooops... my fooness. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89843 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Another huge file check, and one fewer emits git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89833 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Clean up some emits git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89832 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Ok... for _today_ ... This patch conditionally builds against openssl 0.9.6b _if_ openssl is unpacked and properly built (using pretty much the defaults) in the srclib/openssl/ directory. Someday soon this needs to be more exhaustive, but this should solve the 80% problem :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89823 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Missed a small bit git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89822 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
enables the use of the ssl_var_lookup functionality in the various source files in modules/ssl. The ap_hook_* functions are still not yet ported to Apache 2.0 style Submitted by: Madhusudan Mathihalli <madhusudan_mathihalli@hp.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89819 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This patch eliminates the direct use of OS library calls (fopen and other depreciated Apache 1.3 library utilities) from ssl_engine_pphrase.c and ssl_util_ssl.c. Submitted by: Madhusudan Mathihalli <madhusudan_mathihalli@hp.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89818 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
- eliminated the use of ssl_log - it used to cause seg faults during cleanup since the conn_rec will no longer be valid. - eliminated the "for (;;)" processing loop in ssl_io_filter_Output() - we'll have to do that in churn_output() if required, so that any remaining OpenSSL data (if available) is transferred before we call the CloseConnection. - Any remaining data in SSL should be cleaned up ideally in the APR_BUCKET_IS_EOS() processing stage itself, as we close the SSL connection here. Submitted by: Madhusudan Mathihalli <madhusudan_mathihalli@hp.com> Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89816 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Activate ssl_hook_pre_config git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89815 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Change lib locations for openssl's debugging default targets git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89814 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89812 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
Also consolidate the two hints git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89811 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Thanks Madhu, I think backing out the last bit, and using this instead, may be a bit simpler. Could still exist a problem feel free to fix. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89810 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 30, 2001
-
-
William A. Rowe Jr authored
Register for %X, %c (we gotta make a decision, please vote if you care... use %c's meaning from the historical SSL modules, or Bill Stoddard's connection-terminated meaning? One will have to give.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89807 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
The short term hack. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89806 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More XHTML foo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89805 13f79535-47bb-0310-9956-ffa450edef68
-
David Reid authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89803 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 26, 2001
-
-
William A. Rowe Jr authored
Update make file for win32 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89733 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 25, 2001
-
-
Ralf S. Engelschall authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89705 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 24, 2001
-
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89681 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 20, 2001
-
-
William A. Rowe Jr authored
Update for latest structure changes for 2.0.21 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89644 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 19, 2001
-
-
William A. Rowe Jr authored
That's it. Adjust for our pcre transition, and the whole thing links once again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89631 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
We want the ssl_expr evaluators, now git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89629 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Hope I've got these generated bits right. Note bison is more common for Win32 then lexx. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89628 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Take care of folk's assert() undefined errors. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89627 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
A dash of portability git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89624 13f79535-47bb-0310-9956-ffa450edef68
-