]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Associate Confirm, Renew and Rebind with correct method
authorNick Porter <nick@portercomputing.co.uk>
Thu, 3 Dec 2020 10:12:29 +0000 (10:12 +0000)
committerAlan DeKok <aland@freeradius.org>
Thu, 3 Dec 2020 13:29:30 +0000 (08:29 -0500)
src/modules/rlm_redis_ippool/rlm_redis_ippool.c

index ce0c540dc56b93a52aa0eb3c083a2b949c4a890c..778eb46cd631192656cfa1ba30bcf371271350a3 100644 (file)
@@ -1429,6 +1429,9 @@ module_t rlm_redis_ippool = {
        },
        .method_names = (module_method_names_t[]) {
                { .name1 = "recv",      .name2 = "Request",     .method = mod_request },
+               { .name1 = "recv",      .name2 = "Confirm",     .method = mod_request },
+               { .name1 = "recv",      .name2 = "Renew",       .method = mod_request },
+               { .name1 = "recv",      .name2 = "Rebind",      .method = mod_request },
                MODULE_NAME_TERMINATOR
        }
 };