aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/mod_gnutls.h.in5
-rw-r--r--src/gnutls_io.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/include/mod_gnutls.h.in b/include/mod_gnutls.h.in
index 7d39a72..0b6c66c 100644
--- a/include/mod_gnutls.h.in
+++ b/include/mod_gnutls.h.in
@@ -146,6 +146,11 @@ typedef struct
146/** Functions in gnutls_io.c **/ 146/** Functions in gnutls_io.c **/
147 147
148/** 148/**
149 * write_flush will flush data
150 */
151static ssize_t write_flush(mgs_handle_t * ctxt);
152
153/**
149 * mgs_filter_input will filter the input data 154 * mgs_filter_input will filter the input data
150 * by decrypting it using GnuTLS and passes it cleartext. 155 * by decrypting it using GnuTLS and passes it cleartext.
151 * 156 *
diff --git a/src/gnutls_io.c b/src/gnutls_io.c
index a434eb5..debdf5a 100644
--- a/src/gnutls_io.c
+++ b/src/gnutls_io.c
@@ -561,7 +561,7 @@ apr_status_t mgs_filter_output(ap_filter_t * f, apr_bucket_brigade * bb)
561 while (!APR_BRIGADE_EMPTY(bb)) { 561 while (!APR_BRIGADE_EMPTY(bb)) {
562 apr_bucket *bucket = APR_BRIGADE_FIRST(bb); 562 apr_bucket *bucket = APR_BRIGADE_FIRST(bb);
563 563
564 if (AP_BUCKET_IS_EOS(bucket)) { 564 if (APR_BUCKET_IS_EOS(bucket)) {
565 return ap_pass_brigade(f->next, bb); 565 return ap_pass_brigade(f->next, bb);
566 } else if (APR_BUCKET_IS_FLUSH(bucket)) { 566 } else if (APR_BUCKET_IS_FLUSH(bucket)) {
567 /* Try Flush */ 567 /* Try Flush */
' height='13' alt='Gravatar' /> Paul Querna 2005-04-25 | * apr_table_setn doesn't copy the data. oops.Gravatar Paul Querna 2005-04-24 | * We already have a Certificate, use it directly. With SNI, GnuTLS doesn't ↵Gravatar Paul Querna 2005-04-24 | | | | properly update it's internal state. ick. * if there aren't any certs.. still set something.Gravatar Paul Querna 2005-04-24 | * add SSL_SERVER_S_DN and SSL_SERVER_I_DN Gravatar Paul Querna 2005-04-24 | * - move hooks to gnutls_hooks.cGravatar Paul Querna 2005-04-24 | | | | | - use 'mgs_' as the prefix for all symbols, instead of mixed prefixes. * move config functions to their own file. Gravatar Paul Querna 2005-04-24 | * - remove more debug logging.Gravatar Paul Querna 2005-04-22 | | | | | - fix a crash by changing the certificate structure *after* starting the handshake. * client auth is sort of working.Gravatar Paul Querna 2005-04-22 | * working SNI. Not so working Client Cert support.Gravatar Paul Querna 2005-04-21 | * include support for 2.0.xxGravatar Paul Querna 2005-04-08 | * wrap the debug log in maintainer mode.Gravatar Paul Querna 2005-04-08 | * - remove anno credsGravatar Paul Querna 2005-04-06 | | | | | | | | - initial attempt at Server Name Extension - change to adding 'mod_gnutls' to the server sig instead of GnuTLS/ - fix for EOF/EOC/EOS buckets - 'general' code cleanups * checkpoint the work so far. The DBM cache needs a little more work.