Free all the users registered in the radix tree 'users' and free the * radix tree itself. */
| 353 | /* Free all the users registered in the radix tree 'users' and free the |
| 354 | * radix tree itself. */ |
| 355 | void ACLFreeUsersSet(rax *users) { |
| 356 | raxFreeWithCallback(users,(void(*)(void*))ACLFreeUserAndKillClients); |
| 357 | } |
| 358 | |
| 359 | /* Given a command ID, this function set by reference 'word' and 'bit' |
| 360 | * so that user->allowed_commands[word] will address the right word |
no test coverage detected