Revision: | 1.1 |
Committed: | Wed Apr 1 14:28:46 2009 UTC (16 years, 1 month ago) by lat |
Branch: | MAIN |
CVS Tags: | MotT0_1_0_2, MotT0_1_0_1, MotT0_1_0_0, MotT0_100531_1, MotT0_100528_1, T0Mon_100518_1, T0Mon_100503_1, T0Mon_100316_1, T0Mon_100308_2, T0Mon_100308_1, T0Mon_100216_1, T0Mon_100210_1, T0Mon_100204_4, T0Mon_100204_3, T0Mon_100204_1, T0Mon_100127_1, dg20091203-comp-base, T0Mon_091111_1, BUILDBOT_01, CERNOIDv02, CouchDB_0_10_0, CERNOIDv01, WMCORE-before-refactor, PerfSuiteDB_20090930, PerfSuiteDB_20090916, PerfSuiteDB_20090904_almost_stable, PerfSuiteDB_20090904, PerfSuiteDB_20090901, forHEARTBEATr04, RPMVERIFY_0_2, forHEARTBEATr01, ap20090520-osx105, ap20090519-osx105, DBS_2_0_6_patch_2_32 |
Log Message: | Switch to 2.2.11; correct openssl usage so we actually pick up our own; add patch to debug ssl writes. |
# | User | Rev | Content |
---|---|---|---|
1 | lat | 1.1 | --- modules/ssl/ssl_engine_io.c.orig 2009-04-01 14:28:36.000000000 +0200 |
2 | +++ modules/ssl/ssl_engine_io.c 2009-04-01 14:28:52.000000000 +0200 | ||
3 | @@ -1704,6 +1704,8 @@ void ssl_io_filter_init(conn_rec *c, SSL | ||
4 | if (c->base_server->loglevel >= APLOG_DEBUG) { | ||
5 | BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb); | ||
6 | BIO_set_callback_arg(SSL_get_rbio(ssl), (void *)ssl); | ||
7 | + BIO_set_callback(SSL_get_wbio(ssl), ssl_io_data_cb); | ||
8 | + BIO_set_callback_arg(SSL_get_wbio(ssl), (void *)ssl); | ||
9 | } | ||
10 | |||
11 | return; |