~iheino+ub/+junk/nut-upsconf-docfix

« back to all changes in this revision

Viewing changes to clients/cgilib.h

  • Committer: Tuomas Heino
  • Author(s): Laurent Bigonville
  • Date: 2014-04-22 20:46:12 UTC
  • Revision ID: iheino+ub@cc.hut.fi-20140422204612-1x2gh3nkezfsdao4
Tags: upstream-2.7.2
ImportĀ upstreamĀ versionĀ 2.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* cgilib.h - headers for cgilib.c
 
2
 
 
3
   Copyright (C) 1999  Russell Kroll <rkroll@exploits.org>
 
4
 
 
5
   This program is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by
 
7
   the Free Software Foundation; either version 2 of the License, or
 
8
   (at your option) any later version.
 
9
 
 
10
   This program is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
   GNU General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU General Public License
 
16
   along with this program; if not, write to the Free Software
 
17
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
*/
 
19
 
 
20
#ifdef __cplusplus
 
21
/* *INDENT-OFF* */
 
22
extern "C" {
 
23
/* *INDENT-ON* */
 
24
#endif
 
25
 
 
26
/* other programs that link to this should provide parsearg() ... */
 
27
void parsearg(char *var, char *value);
 
28
 
 
29
/* actually extract the values from QUERY_STRING */
 
30
void extractcgiargs(void);
 
31
 
 
32
/* like extractcgiargs, but this one is for POSTed values */
 
33
void extractpostargs(void);
 
34
 
 
35
/* see if a host is allowed per the hosts.conf */
 
36
int checkhost(const char *host, char **desc);
 
37
 
 
38
#ifdef __cplusplus
 
39
/* *INDENT-OFF* */
 
40
}
 
41
/* *INDENT-ON* */
 
42
#endif
 
43