]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add dict pointer to proto modules
authorAlan T. DeKok <aland@freeradius.org>
Thu, 9 Jan 2020 14:08:09 +0000 (09:08 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 9 Jan 2020 14:08:09 +0000 (09:08 -0500)
src/modules/proto_dhcpv4/proto_dhcpv4.c
src/modules/proto_radius/proto_radius.c
src/modules/proto_vmps/proto_vmps.c

index 93cdf5ec6f39310b3ce67304550c3cd27761fdad..48d8039e8179a6731963eec44175c6436df04328 100644 (file)
@@ -620,6 +620,7 @@ fr_app_t proto_dhcpv4 = {
        .name                   = "dhcpv4",
        .config                 = proto_dhcpv4_config,
        .inst_size              = sizeof(proto_dhcpv4_t),
+       .dict                   = &dict_dhcpv4,
 
        .onload                 = mod_load,
        .unload                 = mod_unload,
index cf5eb2388697cc955836097f27448d250c2e5125..4349dbcc2e3d6e4d5008b9b742447c2c32aa5546 100644 (file)
@@ -732,6 +732,7 @@ fr_app_t proto_radius = {
        .name                   = "radius",
        .config                 = proto_radius_config,
        .inst_size              = sizeof(proto_radius_t),
+       .dict                   = &dict_radius,
 
        .onload                 = mod_load,
        .unload                 = mod_unload,
index 7995c3d78efd2cd78772dd95754346eecab7d4ef..f393576b29a9c63bb8004c10159b1953a47d7d30 100644 (file)
@@ -588,6 +588,7 @@ fr_app_t proto_vmps = {
        .name                   = "vmps",
        .config                 = proto_vmps_config,
        .inst_size              = sizeof(proto_vmps_t),
+       .dict                   = &dict_vmps,
 
        .onload                 = mod_load,
        .unload                 = mod_unload,