]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_cache_cf.cc
BUGFIX: max_user_ip was broken: initialising to -1 meant that the ACL appeared
[thirdparty/squid.git] / src / tests / stub_cache_cf.cc
1 /*
2 * $Id: stub_cache_cf.cc,v 1.3 2006/04/23 11:10:35 robertc Exp $
3 *
4 * DEBUG: section 3 Configuration File Parsing
5 * AUTHOR: Robert Collins
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 */
34
35 #include "squid.h"
36 #include "ConfigParser.h"
37 #include "wordlist.h"
38
39 void
40 self_destruct(void)
41 {
42 /* fatalf("Bungled %s line %d: %s",
43 cfg_filename, config_lineno, config_input_line);*/
44 fatalf("bungled line");
45 }
46
47 void
48 parse_int(int *var)
49 {
50 fatal("not implemented 1");
51 }
52
53 void
54 parse_onoff(int *var)
55 {
56 fatal("not implemented 2");
57 }
58
59 void
60 parse_eol(char *volatile *var)
61 {
62 unsigned char *token = (unsigned char *) strtok(NULL, null_string);
63 safe_free(*var);
64
65 if (token == NULL)
66 self_destruct();
67
68 while (*token && isspace(*token))
69 token++;
70
71 if (!*token)
72 self_destruct();
73
74 *var = xstrdup((char *) token);
75 }
76
77 void
78 parse_wordlist(wordlist ** list)
79 {
80 char *token;
81 char *t = strtok(NULL, "");
82
83 while ((token = strwordtok(NULL, &t)))
84 wordlistAdd(list, token);
85 }
86
87 void
88 requirePathnameExists(const char *name, const char *path)
89 {
90 /* tee-hee. ignore this for testing */
91 }
92
93 void
94 parse_time_t(time_t * var)
95 {
96 fatal("not implemented 6");
97 }
98
99 char *
100 strtokFile(void)
101 {
102 fatal("not implemented 9");
103 return NULL;
104 }
105
106 void
107 ConfigParser::ParseUShort(u_short *var)
108 {
109 fatal("not implemented 10");
110 }
111
112 void
113 dump_acl_access(StoreEntry * entry, const char *name, acl_access * head)
114 {
115 fatal("not implemented 11");
116 }
117
118 /*
119 * DO NOT MODIFY:
120 * arch-tag: 9bbc3b5f-8d7b-4fdc-af59-0b524a785307
121 */