]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5484] Adding missing
authorFrancis Dupont <fdupont@isc.org>
Fri, 9 Mar 2018 21:18:20 +0000 (22:18 +0100)
committerTomek Mrugalski <tomasz@isc.org>
Mon, 12 Mar 2018 19:54:01 +0000 (19:54 +0000)
src/bin/dhcp4/dhcp4_parser.yy
src/bin/dhcp6/dhcp6_parser.yy

index 13dfd8bd0a033b1fa7e8d64dc018ed6d28841170..6537379b75424dfb0bf31e02fc05823833c4a4e6 100644 (file)
@@ -535,7 +535,7 @@ outbound_interface: OUTBOUND_INTERFACE {
 } COLON outbound_interface_value {
     ctx.stack_.back()->set("outbound-interface", $4);
     ctx.leave();
-}
+};
 
 outbound_interface_value: SAME_AS_INBOUND {
     $$ = ElementPtr(new StringElement("same-as-inbound", ctx.loc2pos(@1)));
@@ -670,17 +670,17 @@ connect_timeout: CONNECT_TIMEOUT COLON INTEGER {
 request_timeout: REQUEST_TIMEOUT COLON INTEGER {
     ElementPtr n(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("request-timeout", n);
-}
+};
 
 tcp_keepalive: TCP_KEEPALIVE COLON INTEGER {
     ElementPtr n(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("tcp-keepalive", n);
-}
+};
 
 tcp_nodelay: TCP_NODELAY COLON BOOLEAN {
     ElementPtr n(new BoolElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("tcp-nodelay", n);
-}
+};
 
 contact_points: CONTACT_POINTS {
     ctx.enter(ctx.NO_KEYWORD);
@@ -752,7 +752,7 @@ client_id : CLIENT_ID {
 flex_id: FLEX_ID {
     ElementPtr flex_id(new StringElement("flex-id", ctx.loc2pos(@1)));
     ctx.stack_.back()->add(flex_id);
-}
+};
 
 hooks_libraries: HOOKS_LIBRARIES {
     ElementPtr l(new ListElement(ctx.loc2pos(@1)));
@@ -1072,7 +1072,7 @@ shared_network: LCURLY_BRACKET {
     ctx.stack_.push_back(m);
 } shared_network_params RCURLY_BRACKET {
     ctx.stack_.pop_back();
-}
+};
 
 shared_network_params: shared_network_param
                      | shared_network_params COMMA shared_network_param
@@ -2037,17 +2037,17 @@ output: OUTPUT {
 flush: FLUSH COLON BOOLEAN {
     ElementPtr flush(new BoolElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("flush", flush);
-}
+};
 
 maxsize: MAXSIZE COLON INTEGER {
     ElementPtr maxsize(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("maxsize", maxsize);
-}
+};
 
 maxver: MAXVER COLON INTEGER {
     ElementPtr maxver(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("maxver", maxver);
-}
+};
 
 %%
 
index 59e40297009900644d61e2df3dee7e3a1711d415..210f880bbcf5d30f16c8605ab053d5f8e1e961ca 100644 (file)
@@ -640,22 +640,22 @@ connect_timeout: CONNECT_TIMEOUT COLON INTEGER {
 reconnect_wait_time: RECONNECT_WAIT_TIME COLON INTEGER {
     ElementPtr n(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("reconnect-wait-time", n);
-}
+};
 
 request_timeout: REQUEST_TIMEOUT COLON INTEGER {
     ElementPtr n(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("request-timeout", n);
-}
+};
 
 tcp_keepalive: TCP_KEEPALIVE COLON INTEGER {
     ElementPtr n(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("tcp-keepalive", n);
-}
+};
 
 tcp_nodelay: TCP_NODELAY COLON BOOLEAN {
     ElementPtr n(new BoolElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("tcp-nodelay", n);
-}
+};
 
 contact_points: CONTACT_POINTS {
     ctx.enter(ctx.NO_KEYWORD);
@@ -1038,7 +1038,7 @@ shared_network: LCURLY_BRACKET {
     ctx.stack_.push_back(m);
 } shared_network_params RCURLY_BRACKET {
     ctx.stack_.pop_back();
-}
+};
 
 shared_network_params: shared_network_param
                      | shared_network_params COMMA shared_network_param
@@ -2123,17 +2123,17 @@ output: OUTPUT {
 flush: FLUSH COLON BOOLEAN {
     ElementPtr flush(new BoolElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("flush", flush);
-}
+};
 
 maxsize: MAXSIZE COLON INTEGER {
     ElementPtr maxsize(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("maxsize", maxsize);
-}
+};
 
 maxver: MAXVER COLON INTEGER {
     ElementPtr maxver(new IntElement($3, ctx.loc2pos(@3)));
     ctx.stack_.back()->set("maxver", maxver);
-}
+};
 
 %%