#include "common.h"#include "portable.h"#include "portimpl.h"#include "obscure.h"#include "hash.h"Include dependency graph for servcis.c:

Go to the source code of this file.
Functions | |
| static void | _makeTempName (struct tempName *tn, char *base, char *suffix) |
| static char * | _cgiDir () |
| static char * | _trashDir () |
| static double | _speed () |
Variables | |
| static char const | rcsid [] = "$Id: servcis.c,v 1.10 2006/06/19 22:02:57 hiram Exp $" |
| static char * | __trashDir = "../trash" |
| webServerSpecific | wssDefault |
| static char* _cgiDir | ( | ) | [static] |
| static void _makeTempName | ( | struct tempName * | tn, | |
| char * | base, | |||
| char * | suffix | |||
| ) | [static] |
Definition at line 16 of file servcis.c.
References __trashDir, tempName::forCgi, tempName::forHtml, and rTempName().
00018 { 00019 char *tname; 00020 00021 tname = rTempName(__trashDir, base, suffix); 00022 strcpy(tn->forCgi, tname); 00023 strcpy(tn->forHtml, tname); 00024 }
Here is the call graph for this function:

| static double _speed | ( | ) | [static] |
| static char* _trashDir | ( | ) | [static] |
Definition at line 31 of file servcis.c.
References __trashDir.
00032 { 00033 return __trashDir; 00034 }
char* __trashDir = "../trash" [static] |
char const rcsid[] = "$Id: servcis.c,v 1.10 2006/06/19 22:02:57 hiram Exp $" [static] |
| struct webServerSpecific wssDefault |
Initial value:
{
"default",
_makeTempName,
_cgiDir,
_speed,
_trashDir,
}
Definition at line 42 of file servcis.c.
Referenced by setupWss().
1.5.2