summaryrefslogtreecommitdiffstats
path: root/database/sqlite
diff options
context:
space:
mode:
Diffstat (limited to 'database/sqlite')
-rw-r--r--database/sqlite/administration.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/database/sqlite/administration.c b/database/sqlite/administration.c
index 7e0e943..982608e 100644
--- a/database/sqlite/administration.c
+++ b/database/sqlite/administration.c
@@ -326,48 +326,48 @@ int eDBadminConfigDelete(eurephiaCTX *ctx, const char *key) {
return 1;
}
-eurephiaUSERLIST *eDBgetUserList(eurephiaCTX *ctx, const int sortkey) {
+eurephiaUSERLIST *eDBadminGetUserList(eurephiaCTX *ctx, const int sortkey) {
return NULL;
}
-eurephiaUSERINFO *eDBgetUserInfo(eurephiaCTX *ctx, eurephiaUSERINFO *srchkey) {
+eurephiaUSERINFO *eDBadminGetUserInfo(eurephiaCTX *ctx, eurephiaUSERINFO *srchkey) {
return NULL;
}
-int eDBaddUser(eurephiaCTX *ctx, eurephiaUSERINFO *usrinf) {
+int eDBadminAddUser(eurephiaCTX *ctx, eurephiaUSERINFO *usrinf) {
return 0;
}
-int eDBupdateUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) {
+int eDBadminUpdateUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) {
return 0;
}
-int eDBdeleteUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) {
+int eDBadminDeleteUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) {
return 0;
}
-eurephiaCERTLIST *eDBgetCertificateList(eurephiaCTX *ctx, const int sortkey) {
+eurephiaCERTLIST *eDBadminGetCertificateList(eurephiaCTX *ctx, const int sortkey) {
return NULL;
}
-eurephiaCERTINFO *eDBgetCertificateInfo(eurephiaCTX *ctx, eurephiaCERTINFO *srchkey) {
+eurephiaCERTINFO *eDBadminGetCertificateInfo(eurephiaCTX *ctx, eurephiaCERTINFO *srchkey) {
return NULL;
}
-int eDBaddCertificate(eurephiaCTX *ctx, eurephiaCERTINFO *crtinf) {
+int eDBadminAddCertificate(eurephiaCTX *ctx, eurephiaCERTINFO *crtinf) {
return 0;
}
-int eDBdeleteCertificate(eurephiaCTX *ctx, const int uid, eurephiaCERTINFO *crtinf) {
+int eDBadminDeleteCertificate(eurephiaCTX *ctx, const int uid, eurephiaCERTINFO *crtinf) {
return 0;
}
-eurephiaLOGLIST *eDBgetLastlog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) {
+eurephiaLOGLIST *eDBadminGetLastlog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) {
return NULL;
};
-eurephiaLOGLIST *eDBgetAttemptsLog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) {
+eurephiaLOGLIST *eDBadminGetAttemptsLog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) {
return NULL;
};