]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3477] Checkpoint: missing decl
authorFrancis Dupont <fdupont@isc.org>
Wed, 3 Jul 2024 22:33:00 +0000 (00:33 +0200)
committerFrancis Dupont <fdupont@isc.org>
Thu, 1 Aug 2024 07:23:52 +0000 (09:23 +0200)
src/bin/dhcp4/dhcp4_parser.yy
src/bin/dhcp4/parser_context.h

index 6de8c926cf0d09878008aee6934230030911d707..b0190d83de5d159641d9340e3c5b6ac45c48edf6 100644 (file)
@@ -311,6 +311,8 @@ using namespace std;
 %type <ElementPtr> ncr_protocol_value
 %type <ElementPtr> ddns_replace_client_name_value
 %type <ElementPtr> ddns_conflict_resolution_mode_value
+%type <ElementPtr> control_socket_type_value
+%type <ElementPtr> auth_type_value
 
 %printer { yyoutput << $$; } <*>;
 
index 4e6ff206630f0b8ead769b734cc5c102c1dda602..4e875a5bf56108ae87dbf0c56795585509e47361 100644 (file)
@@ -294,18 +294,18 @@ public:
         CONTROL_SOCKET,
 
         /// Used while parsing Dhcp4/control-socket/socket-type structures.
-       CONTROL_SOCKET_TYPE,
+        CONTROL_SOCKET_TYPE,
 
-       /// Used while parsing Dhcp4/control-socket/authentication structures.
-       AUTHENTICATION,
+        /// Used while parsing Dhcp4/control-socket/authentication structures.
+        AUTHENTICATION,
 
-       /// Used while parsing Dhcp4/control-socket/authentication/type
+        /// Used while parsing Dhcp4/control-socket/authentication/type
         /// structures.
-       AUTH_TYPE,
+        AUTH_TYPE,
 
-       /// Used while parsing Dhcp4/control-socket/authentication/clients
+        /// Used while parsing Dhcp4/control-socket/authentication/clients
         /// structures.
-       CLIENTS,
+        CLIENTS,
 
         /// Used while parsing Dhcp4/dhcp-queue-control structures.
         DHCP_QUEUE_CONTROL,