You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" <ma...@hp.com> on 2001/08/24 21:00:48 UTC

RE: cvs commit: httpd-2.0/modules/ssl mod_ssl.c ssl_engine_io.c

Hi,
  Pl. see my comments below ..

-----Original Message-----
From: dougm@apache.org [mailto:dougm@apache.org]
Sent: Friday, August 24, 2001 11:07 AM
To: httpd-2.0-cvs@apache.org
Subject: cvs commit: httpd-2.0/modules/ssl mod_ssl.c ssl_engine_io.c


dougm       01/08/24 11:06:47

  Modified:    modules/ssl mod_ssl.c ssl_engine_io.c
  Log:
  enable i/o debugging
  
  Revision  Changes    Path
  1.28      +1 -6      httpd-2.0/modules/ssl/mod_ssl.c
  
  Index: mod_ssl.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/mod_ssl.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- mod_ssl.c	2001/08/24 00:09:30	1.27
  +++ mod_ssl.c	2001/08/24 18:06:47	1.28
  @@ -285,12 +285,7 @@
        */
       SSL_set_tmp_rsa_callback(ssl, ssl_callback_TmpRSA);
       SSL_set_tmp_dh_callback(ssl,  ssl_callback_TmpDH);
  -#if 0 /* XXX */
  -    if (sc->nLogLevel >= SSL_LOG_DEBUG) {
  -        BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
  -        BIO_set_callback_arg(SSL_get_rbio(ssl), ssl);
  -    }
  -#endif
  +
 

WHY ?.. We've got to enable DEBUG (if the user wants it).. I'd prefer to
have it.. 


Thanks
-Madhu 

RE: cvs commit: httpd-2.0/modules/ssl mod_ssl.c ssl_engine_io.c

Posted by Doug MacEachern <do...@covalent.net>.
On Fri, 24 Aug 2001, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote:

>   -#if 0 /* XXX */
>   -    if (sc->nLogLevel >= SSL_LOG_DEBUG) {
>   -        BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
>   -        BIO_set_callback_arg(SSL_get_rbio(ssl), ssl);
>   -    }
>   -#endif
>   +
>  
> 
> WHY ?.. We've got to enable DEBUG (if the user wants it).. I'd prefer to
> have it.. 

huh?  all you need is to configure 'SSLLogLevel debug' and the i/o debug
hooks are enabled.