Branch: Tag:

1997-04-07

1997-04-07 23:23:44 by Per Hedbor <ph@opera.com>

Fixes for SSL3. Should work now if you have all the pike-modules enabled

Rev: server/base_server/configuration.pike:1.20
Rev: server/base_server/roxen.pike:1.48
Rev: server/protocols/http.pike:1.23
Rev: server/protocols/ssl3.pike:1.3

1:   // This is a roxen module. (c) Informationsvävarna AB 1996.    - string cvs_version = "$Id: http.pike,v 1.22 1997/04/05 01:26:31 per Exp $"; + string cvs_version = "$Id: http.pike,v 1.23 1997/04/07 23:23:43 per Exp $";   // HTTP protocol module.   #include <config.h>   inherit "roxenlib";
616:    return !!cache;   }    - static void handle_request( ) + void handle_request( )   {    mixed *err;    int tmp;
893:    conf->requests++;    }   #ifdef THREADS -  handle(handle_request); +  handle(this_object()->handle_request);   #else -  handle_request(); +  this_object()->handle_request();   #endif   }