Clear command id table and reset nextid to 0. */
| 1164 | |
| 1165 | /* Clear command id table and reset nextid to 0. */ |
| 1166 | void ACLClearCommandID(void) { |
| 1167 | if (commandId) raxFree(commandId); |
| 1168 | commandId = NULL; |
| 1169 | nextid = 0; |
| 1170 | } |
| 1171 | |
| 1172 | /* Return an username by its name, or NULL if the user does not exist. */ |
| 1173 | user *ACLGetUserByName(const char *name, size_t namelen) { |
no test coverage detected