~ubuntu-branches/ubuntu/karmic/pdnsd/karmic

« back to all changes in this revision

Viewing changes to src/conf-parse.h

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-04-07 02:30:11 UTC
  • Revision ID: james.westby@ubuntu.com-20020407023011-6zzd1y8a8tk5fz97
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef YYERRCODE
 
2
#define YYERRCODE 256
 
3
#endif
 
4
 
 
5
#define NUMBER 257
 
6
#define STRING 258
 
7
#define ERROR 259
 
8
#define GLOBAL 260
 
9
#define SERVER 261
 
10
#define RR 262
 
11
#define NEG 263
 
12
#define SOURCE 264
 
13
#define PERM_CACHE 265
 
14
#define CACHE_DIR 266
 
15
#define SERVER_PORT 267
 
16
#define SERVER_IP 268
 
17
#define SCHEME_FILE 269
 
18
#define LINKDOWN_KLUGE 270
 
19
#define MAX_TTL 271
 
20
#define MIN_TTL 272
 
21
#define RUN_AS 273
 
22
#define STRICT_SETUID 274
 
23
#define PARANOID 275
 
24
#define STATUS_CTL 276
 
25
#define DAEMON 277
 
26
#define C_TCP_SERVER 278
 
27
#define PID_FILE 279
 
28
#define C_VERBOSITY 280
 
29
#define C_QUERY_METHOD 281
 
30
#define RUN_IPV4 282
 
31
#define C_DEBUG 283
 
32
#define C_CTL_PERMS 284
 
33
#define C_PROC_LIMIT 285
 
34
#define C_PROCQ_LIMIT 286
 
35
#define TCP_QTIMEOUT 287
 
36
#define C_PAR_QUERIES 288
 
37
#define C_RAND_RECS 289
 
38
#define NEG_TTL 290
 
39
#define NEG_RRS_POL 291
 
40
#define NEG_DOMAIN_POL 292
 
41
#define QUERY_PORT_START 293
 
42
#define QUERY_PORT_END 294
 
43
#define IP 295
 
44
#define PORT 296
 
45
#define SCHEME 297
 
46
#define UPTEST 298
 
47
#define TIMEOUT 299
 
48
#define PING_TIMEOUT 300
 
49
#define PING_IP 301
 
50
#define UPTEST_CMD 302
 
51
#define INTERVAL 303
 
52
#define INTERFACE 304
 
53
#define DEVICE 305
 
54
#define PURGE_CACHE 306
 
55
#define CACHING 307
 
56
#define LEAN_QUERY 308
 
57
#define PRESET 309
 
58
#define PROXY_ONLY 310
 
59
#define INCLUDE 311
 
60
#define EXCLUDE 312
 
61
#define POLICY 313
 
62
#define LABEL 314
 
63
#define A 315
 
64
#define PTR 316
 
65
#define MX 317
 
66
#define SOA 318
 
67
#define CNAME 319
 
68
#define NAME 320
 
69
#define OWNER 321
 
70
#define TTL 322
 
71
#define TYPES 323
 
72
#define FILET 324
 
73
#define SERVE_ALIASES 325
 
74
#define AUTHREC 326
 
75
#define NDOMAIN 327
 
76
#define CONST 328
 
77
#define RRTYPE 329
 
78
typedef union {
 
79
long          num;
 
80
unsigned char *nm;
 
81
} YYSTYPE;
 
82
extern YYSTYPE yylval;