You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/09/16 22:59:22 UTC

svn commit: r815962 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h

Author: trawick
Date: Wed Sep 16 20:59:22 2009
New Revision: 815962

URL: http://svn.apache.org/viewvc?rev=815962&view=rev
Log:
sort server config fields first by scope then by name of 
corresponding directive

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h?rev=815962&r1=815961&r2=815962&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h Wed Sep 16 20:59:22 2009
@@ -62,31 +62,35 @@
 } fcgid_wrapper_conf;
 
 typedef struct {
-    int idle_timeout;
-    int idle_scan_interval;
+    /* global only */
     int busy_scan_interval;
-    int proc_lifetime;
+    int max_class_process_count;
+    int min_class_process_count;
     int error_scan_interval;
-    int zombie_scan_interval;
-    char *sockname_prefix;
+    int idle_scan_interval;
+    int idle_timeout;
+    int max_process_count;
+    int php_fix_pathinfo_enable;
+    int proc_lifetime;
     char *shmname_path;
-    int spawnscore_uplimit;
+    char *sockname_prefix;
     int spawn_score;
+    int spawnscore_uplimit;
     int termination_score;
     int time_score;
-    int max_process_count;
-    int max_class_process_count;
-    int min_class_process_count;
-    int max_request_len;
+    int zombie_scan_interval;
+    /* global or vhost */
+    int busy_timeout; /* TODO: Does setting this in a vhost work as expected?
+                       * Look at use in PM vs. handler.
+                       */
+    apr_table_t *default_init_env;
+    int ipc_comm_timeout;
+    int ipc_connect_timeout;
     int max_mem_request_len;
-    int output_buffersize;
+    int max_request_len;
     int max_requests_per_process;
-    apr_table_t *default_init_env;
+    int output_buffersize;
     apr_array_header_t *pass_headers;
-    int ipc_connect_timeout;
-    int ipc_comm_timeout;
-    int busy_timeout;
-    int php_fix_pathinfo_enable;
 } fcgid_server_conf;
 
 typedef struct {



Re: svn commit: r815962 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.h

Posted by Jeff Trawick <tr...@gmail.com>.
On Wed, Sep 16, 2009 at 4:59 PM, <tr...@apache.org> wrote:

> Author: trawick
> Date: Wed Sep 16 20:59:22 2009
> New Revision: 815962
>
> URL: http://svn.apache.org/viewvc?rev=815962&view=rev
> Log:
> sort server config fields first by scope then by name of
> corresponding directive
>

perhaps gratuitous or even nonsensical, but it helped/is helping my feeble
brain with later changes ;)