aboutsummaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index 1d1af4f..fffee2a 100644
--- a/parse.y
+++ b/parse.y
@@ -519,6 +519,9 @@ proxy_opt : CERT string {
yyerror("invalid protocols string \"%s\"", $2);
free($2);
}
+ | PROXYV1 {
+ proxy->proxy = 1;
+ }
| RELAY_TO string proxy_port {
if (strlcpy(proxy->host, $2, sizeof(proxy->host))
>= sizeof(proxy->host))