Re: Thread safety of SSLRequire?

2005-04-25 Thread Joe Orton
On Mon, Apr 25, 2005 at 03:58:46PM -0700, Paul Querna wrote: > Look at: > http://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl/ssl_expr.c > > It has two globals: > ssl_expr_info_type ssl_expr_info; > char *ssl_expr_error; > > Which are used inside the ssl_expr_comp(), which

Re: Thread safety of SSLRequire?

2005-04-25 Thread William A. Rowe, Jr.
At 05:58 PM 4/25/2005, Paul Querna wrote: >Look at: >http://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl/ssl_expr.c > >It has two globals: >ssl_expr_info_type ssl_expr_info; >char *ssl_expr_error; > >Wouldn't this mean in a threaded MPM, that two threads could easily be >pars

Thread safety of SSLRequire?

2005-04-25 Thread Paul Querna
Look at: http://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl/ssl_expr.c It has two globals: ssl_expr_info_type ssl_expr_info; char *ssl_expr_error; Which are used inside the ssl_expr_comp(), which is called from ssl_cmd_SSLRequire(). SSLRequire can be put in an .htaccess f