removed some debugs
[citadel.git] / citadel / user_ops.h
index d9dbc29598f3e79db4d96d28ce7f3cfacc2f2927..1a1ba66bc2e28952c3a0a3d0e37e60ad9375cb45 100644 (file)
@@ -1,16 +1,14 @@
-/* 
- * Header file for server functions which perform operations on user objects.
- *
- * Copyright (c) 1987-2019 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Header file for server functions which perform operations on user objects.
+//
+// Copyright (c) 1987-2022 by the citadel.org team
+//
+// This program is open source software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License, version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #ifndef __USER_OPS_H__
 #define __USER_OPS_H__
@@ -41,18 +39,9 @@ void ForEachUser(void (*CallBack) (char *, void *out_data), void *in_data);
 int NewMailCount(void);
 int InitialMailCheck(void);
 void put_visit(visit *newvisit);
-/* MailboxName is deprecated us CtdlMailboxName instead */
-void MailboxName(char *buf, size_t n, const struct ctdluser *who,
-                const char *prefix) __attribute__ ((deprecated));
-int GenerateRelationshipIndex(  char *IndexBuf,
-                                long RoomID,
-                                long RoomGen,
-                                long UserID);
+int GenerateRelationshipIndex(char *IndexBuf, long RoomID, long RoomGen, long UserID);
 int CtdlAssociateSystemUser(char *screenname, char *loginname);
 
-
-
-
 void CtdlSetPassword(char *new_pw);
 
 int CtdlForgetThisRoom(void);
@@ -61,16 +50,16 @@ void cmd_newu (char *cmdbuf);
 void start_chkpwd_daemon(void);
 
 
-#define RENAMEUSER_OK                  0       /* Operation succeeded */
-#define RENAMEUSER_LOGGED_IN           1       /* Cannot rename a user who is currently logged in */
-#define RENAMEUSER_NOT_FOUND           2       /* The old user name does not exist */
-#define RENAMEUSER_ALREADY_EXISTS      3       /* An account with the desired new name already exists */
+#define RENAMEUSER_OK                  0       // Operation succeeded
+#define RENAMEUSER_LOGGED_IN           1       // Cannot rename a user who is currently logged in
+#define RENAMEUSER_NOT_FOUND           2       // The old user name does not exist
+#define RENAMEUSER_ALREADY_EXISTS      3       // An account with the desired new name already exists
 
 int rename_user(char *oldname, char *newname);
 void reindex_user_928(char *username, void *out_data);
 
-long cutusername(char *username);
-void makeuserkey(char *key, const char *username, long len);
+void makeuserkey(char *key, const char *username);
+int CtdlUserCmp(char *s1, char *s2);
 int internal_create_user(char *username, struct ctdluser *usbuf, uid_t uid);
 
 #endif