Assert that we don't always have a valid session.
[citadel.git] / citadel / room_ops.h
index d099459c108d521cbe414066de7ceab84a57f093..20a8436541e6b2a752466ad86126cd0a1b02a145 100644 (file)
@@ -1,53 +1,31 @@
-/* $Id$ */
 int is_known (struct ctdlroom *roombuf, int roomnum,
              struct ctdluser *userbuf);
 int has_newmsgs (struct ctdlroom *roombuf, int roomnum,
                 struct ctdluser *userbuf);
 int is_zapped (struct ctdlroom *roombuf, int roomnum,
               struct ctdluser *userbuf);
-int getroom(struct ctdlroom *qrbuf, char *room_name);
 void b_putroom(struct ctdlroom *qrbuf, char *room_name);
-void putroom(struct ctdlroom *);
 void b_deleteroom(char *);
-int lgetroom(struct ctdlroom *qrbuf, char *room_name);
-void lputroom(struct ctdlroom *qrbuf);
-void getfloor (struct floor *flbuf, int floor_num);
-struct floor *cgetfloor(int floor_num);
 void lgetfloor (struct floor *flbuf, int floor_num);
-void putfloor (struct floor *flbuf, int floor_num);
 void lputfloor (struct floor *flbuf, int floor_num);
 int sort_msglist (long int *listptrs, int oldcount);
-void usergoto (char *where, int display_result, int transiently,
-                       int *msgs, int *new);
-unsigned create_room(char *new_room_name,
-                       int new_room_type,
-                       char *new_room_pass,
-                       int new_room_floor,
-                       int really_create,
-                       int avoid_access,
-                       int new_room_view);
-void ForEachRoom(void (*CallBack)(struct ctdlroom *EachRoom, void *out_data),
-       void *in_data);
-void schedule_room_for_deletion(struct ctdlroom *qrbuf);
-void delete_room(struct ctdlroom *qrbuf);
 void list_roomname(struct ctdlroom *qrbuf, int ra, int current_view, int default_view);
-int is_noneditable(struct ctdlroom *qrbuf);
-void CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf,
-               int *result, int *view);
-int CtdlDoIHavePermissionToDeleteThisRoom(struct ctdlroom *qr);
 
-int CtdlRenameRoom(char *old_name, char *new_name, int new_floor);
 void convert_room_name_macros(char *towhere, size_t maxlen);
-/*
- * Possible return values for CtdlRenameRoom()
- */
-enum {
-       crr_ok,                         /* success */
-       crr_room_not_found,             /* room not found */
-       crr_already_exists,             /* new name already exists */
-       crr_noneditable,                /* cannot edit this room */
-       crr_invalid_floor,              /* target floor does not exist */
-       crr_access_denied               /* not allowed to edit this room */
-};
 
 
+typedef enum _POST_TYPE{
+       POST_LOGGED_IN,
+       POST_EXTERNAL,
+       CHECK_EXISTANCE,
+       POST_LMTP
+}PostType;
+
+int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, 
+       size_t n, 
+       const char* RemoteIdentifier,
+       PostType PostPublic,
+       int is_reply
+);
+int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void);
+int CtdlDoIHavePermissionToReadMessagesInThisRoom(void);