diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 18:24:02 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 18:24:02 +0000 |
commit | 1f9085cef2c9fb9642c3ffad331a9edc423abf76 (patch) | |
tree | 4cd980e7014c8df908b507f78c27d3432b9a113d /src/scanner.l | |
parent | 09b1b9b9253cd01f3484ba4a78fd260220313ae1 (diff) | |
download | tinyproxy-1f9085cef2c9fb9642c3ffad331a9edc423abf76.tar.gz tinyproxy-1f9085cef2c9fb9642c3ffad331a9edc423abf76.zip |
Added the "DNSserverLocation" and "DNSserverSocket" directives for use
with the "dnsserver" resolver.
Diffstat (limited to '')
-rw-r--r-- | src/scanner.l | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l index 0b9bf2b..8f0ca04 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1,4 +1,4 @@ -/* $Id: scanner.l,v 1.10 2002-04-22 19:33:01 rjkaes Exp $ +/* $Id: scanner.l,v 1.11 2002-05-23 18:24:02 rjkaes Exp $ * * This builds the scanner for the tinyproxy configuration file. This * file needs to stay in sync with grammar.y. If someone knows lex and yacc @@ -51,6 +51,8 @@ static struct keyword keywords[] = { { "deny", KW_DENY }, { "connectport", KW_CONNECTPORT }, { "bind", KW_BIND }, + { "dnsserverlocation", KW_DNSSERVER_LOCATION }, + { "dnsserversocket", KW_DNSSERVER_SOCKET }, /* loglevel and the settings */ { "loglevel", KW_LOGLEVEL }, |