|
Revision 166, 474 bytes
(checked in by Dylan, 3 years ago)
|
|
unxsVZ and unxsBind propset for Id set. Added unxsVZ.tDatacenter backend test reports for in progress datacenter health and
UBC consistency checking.
|
-
Property svn:keywords set to
id
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | FILE |
|---|
| 3 | $Id$ |
|---|
| 4 | LEGAL |
|---|
| 5 | Public Domain. See cgi.c file for more info |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | typedef struct { |
|---|
| 9 | char *name; |
|---|
| 10 | char *val; |
|---|
| 11 | } pentry; |
|---|
| 12 | |
|---|
| 13 | typedef struct { |
|---|
| 14 | char name[128]; |
|---|
| 15 | char val[128]; |
|---|
| 16 | } entry; |
|---|
| 17 | |
|---|
| 18 | void getword(char *word, char *line, char stop); |
|---|
| 19 | char x2c(char *what); |
|---|
| 20 | void unescape_url(char *url); |
|---|
| 21 | void plustospace(char *str); |
|---|
| 22 | void spacetoplus(char *str); |
|---|
| 23 | char *makeword(char *line, char stop); |
|---|
| 24 | char *fmakeword(FILE *f, char stop, int *len); |
|---|
| 25 | void escape_shell_cmd(char *cmd); |
|---|