cvs commit: apachen/htdocs/manual/misc perf.html

1997-12-18 Thread marc
marc97/12/17 17:52:19

  Modified:htdocs/manual/misc perf.html
  Log:
  Add link to Solaris TCP param. tuning page.
  
  Revision  ChangesPath
  1.16  +3 -0  apachen/htdocs/manual/misc/perf.html
  
  Index: perf.html
  ===
  RCS file: /export/home/cvs/apachen/htdocs/manual/misc/perf.html,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- perf.html 1997/11/06 02:55:07 1.15
  +++ perf.html 1997/12/18 01:52:19 1.16
  @@ -117,6 +117,9 @@
   LIA href=http://www.sun.com/sun-on-net/performance.html;
   World Wide Web Server Performance,
   lt;http://www.sun.com/sun-on-net/performance.htmlgt;/a
  +LIA 
HREF=http://www.rvs.uni-hannover.de/people/voeckler/tune/EN/tune.html;
  +Solaris 2.x - tuning your TCP/IP stack/A contains some good technical
  +information about tuning various Solaris TCP/IP parameters.
   /UL
   
   PHR
  
  
  


cvs commit: apachen/src/modules/standard mod_auth_dbm.c

1997-12-18 Thread dgaudet
dgaudet 97/12/18 11:24:48

  Modified:src/modules/standard mod_auth_dbm.c
  Log:
  fix messed up indentation
  
  Revision  ChangesPath
  1.32  +15 -15apachen/src/modules/standard/mod_auth_dbm.c
  
  Index: mod_auth_dbm.c
  ===
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_auth_dbm.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- mod_auth_dbm.c1997/10/22 20:30:16 1.31
  +++ mod_auth_dbm.c1997/12/18 19:24:44 1.32
  @@ -83,21 +83,21 @@
   if ./helpers/TestCompile func dbm_open; then
:
   else
  -case $PLAT in
  - *-linux*)
  - # many systems don't have -ldbm
  - DBM_LIB=
  - if ./helpers/TestCompile lib dbm; then
  - DBM_LIB=-ldbm
  - elif ./helpers/TestCompile lib ndbm; then
  - DBM_LIB=-lndbm
  - fi
  - ;;
  -esac
  -LIBS=$LIBS $DBM_LIB
  -if [ X$DBM_LIB != X ]; then
  - echo  + using $DBM_LIB for mod_auth_dbm
  -fi
  + case $PLAT in
  + *-linux*)
  + # many systems don't have -ldbm
  + DBM_LIB=
  + if ./helpers/TestCompile lib dbm; then
  + DBM_LIB=-ldbm
  + elif ./helpers/TestCompile lib ndbm; then
  + DBM_LIB=-lndbm
  + fi
  + ;;
  + esac
  + LIBS=$LIBS $DBM_LIB
  + if [ X$DBM_LIB != X ]; then
  + echo  + using $DBM_LIB for mod_auth_dbm
  + fi
   fi
* ConfigEnd
* MODULE-DEFINITION-END
  
  
  


cvs commit: apachen/src/modules/standard mod_autoindex.c

1997-12-18 Thread dgaudet
dgaudet 97/12/18 11:53:20

  Modified:src/modules/standard mod_autoindex.c
  Log:
  yet more messed up indentation
  
  Revision  ChangesPath
  1.58  +5 -5  apachen/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- mod_autoindex.c   1997/12/18 19:49:40 1.57
  +++ mod_autoindex.c   1997/12/18 19:53:18 1.58
  @@ -923,20 +923,20 @@
*/
   switch ((*e1)-key) {
   case K_LAST_MOD:
  - s1 = (*e1)-lm_cmp;
  + s1 = (*e1)-lm_cmp;
s2 = (*e2)-lm_cmp;
break;
   case K_SIZE:
  - s1 = (*e1)-size_cmp;
  + s1 = (*e1)-size_cmp;
s2 = (*e2)-size_cmp;
break;
   case K_DESC:
  - s1 = (*e1)-desc;
  + s1 = (*e1)-desc;
s2 = (*e2)-desc;
break;
   case K_NAME:
  - default:
  - s1 = (*e1)-name;
  +default:
  + s1 = (*e1)-name;
s2 = (*e2)-name;
break;
   }
  
  
  


cvs commit: apachen/src/modules/standard mod_digest.c

1997-12-18 Thread dgaudet
dgaudet 97/12/18 12:39:19

  Modified:src/modules/standard mod_digest.c
  Log:
  grrr I dislike gnu indent
  
  Revision  ChangesPath
  1.27  +6 -6  apachen/src/modules/standard/mod_digest.c
  
  Index: mod_digest.c
  ===
  RCS file: /export/home/cvs/apachen/src/modules/standard/mod_digest.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- mod_digest.c  1997/10/26 20:20:04 1.26
  +++ mod_digest.c  1997/12/18 20:39:18 1.27
  @@ -173,8 +173,8 @@
   
   while (s != D_EXIT) {
switch (s) {
  - case D_STRING:
  - if (auth_line[0] == '\') {
  + case D_STRING:
  + if (auth_line[0] == '\') {
s = D_VALUE;
}
else {
  @@ -184,8 +184,8 @@
auth_line++;
break;
   
  - case D_VALUE:
  - if (isalnum(auth_line[0])) {
  + case D_VALUE:
  + if (isalnum(auth_line[0])) {
value[vv] = auth_line[0];
vv++;
}
  @@ -212,8 +212,8 @@
auth_line++;
break;
   
  - case D_KEY:
  - if (isalnum(auth_line[0])) {
  + case D_KEY:
  + if (isalnum(auth_line[0])) {
key[vk] = auth_line[0];
vk++;
}