Differences From Artifact [f905ab86a3]:
- File src/style.c — part of check-in [05ec15cad5] at 2017-12-23 00:50:09 on branch trunk — Fix the "fossil server" command to allow up to FOSSIL_MAX_CONNECTIONS (default 1000) pending HTTP requests. This is an increase from 2. Add the --max-latency command-line option for "fossil server". Do a better job of harvesting dead child processes. Report the number of sibling HTTP request handler processes on the /test_env page. (user: drh size: 28739) [more...]
To Artifact [282a9854e8]:
- File src/style.c — part of check-in [41c7caad8a] at 2017-12-23 02:43:43 on branch trunk — The "fossil server" command keeps track of the total number of requests and displays that value on the /test_env page. (user: drh size: 28777)
︙ | |||
906 907 908 909 910 911 912 913 914 915 916 917 918 919 | 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 | + | for(i=0, c='a'; c<='z'; c++){ if( login_has_capability(&c, 1, 0) ) zCap[i++] = c; } zCap[i] = 0; @ g.userUid = %d(g.userUid)<br /> @ g.zLogin = %h(g.zLogin)<br /> @ g.isHuman = %d(g.isHuman)<br /> @ g.nRequest = %d(g.nRequest)<br /> if( g.nPendingRequest>1 ){ @ g.nPendingRequest = %d(g.nPendingRequest)<br /> } @ capabilities = %s(zCap)<br /> for(i=0, c='a'; c<='z'; c++){ if( login_has_capability(&c, 1, LOGIN_ANON) && !login_has_capability(&c, 1, 0) ) zCap[i++] = c; |
︙ |