Initialization of the ACL subsystem. */
| 1053 | |
| 1054 | /* Initialization of the ACL subsystem. */ |
| 1055 | void ACLInit(void) { |
| 1056 | Users = raxNew(); |
| 1057 | UsersToLoad = listCreate(); |
| 1058 | ACLLog = listCreate(); |
| 1059 | ACLInitDefaultUser(); |
| 1060 | } |
| 1061 | |
| 1062 | /* Check the username and password pair and return C_OK if they are valid, |
| 1063 | * otherwise C_ERR is returned and errno is set to: |
no test coverage detected