diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-12 16:59:37 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-12 16:59:37 +0000 |
commit | 660e4d5687a92fd44ce5c23a4e3d68a786867551 (patch) | |
tree | 35ea8590ee94aff847ed1be782bca92d0d3c9adc /src/scanner.l | |
parent | eb1230e841f93f7a5fcf4103045aef4a76164b81 (diff) |
Added the support code to process a ConnectPort configuration 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 ebe0c49..96e8dee 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1,4 +1,4 @@ -/* $Id: scanner.l,v 1.8 2002-04-10 17:29:18 rjkaes Exp $ +/* $Id: scanner.l,v 1.9 2002-04-12 16:59:37 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 @@ -49,6 +49,7 @@ static struct keyword keywords[] = { { "upstream", KW_UPSTREAM }, { "allow", KW_ALLOW }, { "deny", KW_DENY }, + { "connectport", KW_CONNECTPORT }, /* loglevel and the settings */ { "loglevel", KW_LOGLEVEL }, |