diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-22 19:33:01 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-22 19:33:01 +0000 |
commit | 60f61c8f0c33f6f33b40e59dba14d4448fa4fb18 (patch) | |
tree | d310d99c2ee1ca6ae4d741eac6739e78486b1e45 /src/scanner.l | |
parent | aa68eb8540a7cc0883c4906a52af1bc36ee74be8 (diff) |
Added the "Bind" directive.
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l index 96e8dee..0b9bf2b 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1,4 +1,4 @@ -/* $Id: scanner.l,v 1.9 2002-04-12 16:59:37 rjkaes Exp $ +/* $Id: scanner.l,v 1.10 2002-04-22 19:33:01 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 @@ -50,6 +50,7 @@ static struct keyword keywords[] = { { "allow", KW_ALLOW }, { "deny", KW_DENY }, { "connectport", KW_CONNECTPORT }, + { "bind", KW_BIND }, /* loglevel and the settings */ { "loglevel", KW_LOGLEVEL }, |