]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add more test methods
authorAlan T. DeKok <aland@freeradius.org>
Sat, 18 May 2019 20:39:52 +0000 (16:39 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 18 May 2019 20:39:52 +0000 (16:39 -0400)
src/modules/rlm_test/rlm_test.c

index 3f8cb2e962c97d28546407a3dca6c462effe2b81..a7052f9509b0ff88136734be8552b660dbb4d6aa 100644 (file)
@@ -338,9 +338,11 @@ static int mod_detach(UNUSED void *instance)
 }
 
 static const module_method_names_t method_names[] = {
-       { CF_IDENT_ANY, CF_IDENT_ANY,   mod_return },
-       { "send",       CF_IDENT_ANY,   mod_return },
        { "recv",       "Access-Challenge", mod_return },
+       { "recv",       CF_IDENT_ANY,   mod_return },
+       { "name1_null", NULL,           mod_return },
+       { "send",       CF_IDENT_ANY,   mod_return },
+       { CF_IDENT_ANY, CF_IDENT_ANY,   mod_return },
 
        MODULE_NAME_TERMINATOR
 };