sniper          Thu Jul 10 18:45:34 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/sapi/apache2handler        php_functions.c 
  Log:
  MFH: Use the proper way to get the max requests per child.
  
Index: php-src/sapi/apache2handler/php_functions.c
diff -u php-src/sapi/apache2handler/php_functions.c:1.1.2.8 
php-src/sapi/apache2handler/php_functions.c:1.1.2.9
--- php-src/sapi/apache2handler/php_functions.c:1.1.2.8 Mon May 26 05:46:34 2003
+++ php-src/sapi/apache2handler/php_functions.c Thu Jul 10 18:45:34 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_functions.c,v 1.1.2.8 2003/05/26 09:46:34 derick Exp $ */
+/* $Id: php_functions.c,v 1.1.2.9 2003/07/10 22:45:34 sniper Exp $ */
 
 #include "php.h"
 #include "ext/standard/php_smart_str.h"
@@ -39,6 +39,7 @@
 #include "http_main.h"
 #include "util_script.h"
 #include "http_core.h"
+#include "ap_mpm.h"
 #if !defined(WIN32) && !defined(WINNT)
 #include "unixd.h"
 #endif
@@ -356,14 +357,12 @@
        char *apv = php_apache_get_version();
        smart_str tmp1 = {0};
        char tmp[1024];
-       int n;
+       int n, max_requests;
        char *p;
        server_rec *serv = ((php_struct *) SG(server_context))->r->server;
 #if !defined(WIN32) && !defined(WINNT)
        AP_DECLARE_DATA extern unixd_config_rec unixd_config;
-       extern int ap_max_requests_per_child;
 #endif
-       AP_DECLARE_DATA extern const char *ap_server_root;
        
        for (n = 0; ap_loaded_modules[n]; ++n) {
                char *s = (char *) ap_loaded_modules[n]->name;
@@ -395,11 +394,10 @@
 #if !defined(WIN32) && !defined(WINNT)
        sprintf(tmp, "%s(%d)/%d", unixd_config.user_name, unixd_config.user_id, 
unixd_config.group_id);
        php_info_print_table_row(2, "User/Group", tmp);
-       sprintf(tmp, "Per Child: %d - Keep Alive: %s - Max Per Connection: %d", 
ap_max_requests_per_child, (serv->keep_alive ? "on":"off"), serv->keep_alive_max);
-#else
-       sprintf(tmp, "Keep Alive: %s - Max Per Connection: %d", (serv->keep_alive ? 
"on":"off"), serv->keep_alive_max);
 #endif
 
+       ap_mpm_query(AP_MPMQ_MAX_REQUESTS_DAEMON, &max_requests);
+       sprintf(tmp, "Per Child: %d - Keep Alive: %s - Max Per Connection: %d", 
max_requests, (serv->keep_alive ? "on":"off"), serv->keep_alive_max);
        php_info_print_table_row(2, "Max Requests", tmp);
 
        sprintf(tmp, "Connection: %lld - Keep-Alive: %lld", (serv->timeout / 1000000), 
(serv->keep_alive_timeout / 1000000));



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to