]> code.citadel.org Git - citadel.git/blobdiff - citadel/server.h
Began removing $Id$ tags. This will be an ongoing process.
[citadel.git] / citadel / server.h
index d8161faeac2578be5504153beae3354c3f1c91a4..70770a15a931cbde9814401bcadf3b4cf969a330 100644 (file)
@@ -1,4 +1,3 @@
-/* $Id$ */
 
 
 #ifndef SERVER_H
@@ -84,15 +83,6 @@ struct ExpressMessage {
 #define EM_GO_AWAY     2       /* Server requests client log off */
 #define EM_CHAT                4       /* Server requests client enter chat */
 
-struct ChatLine {
-       struct ChatLine *next;
-       int chat_seq;
-       time_t chat_time;
-       char chat_text[SIZ];
-       char chat_username[USERNAME_SIZE];
-       char chat_room[ROOMNAMELEN];
-};
-
 /*
  * Various things we need to lock and unlock
  */
@@ -221,7 +211,7 @@ enum {
 
 
 /* Defines the relationship of a user to a particular room */
-struct visit {
+typedef struct __visit {
        long v_roomnum;
        long v_roomgen;
        long v_usernum;
@@ -230,7 +220,7 @@ struct visit {
        char v_seen[SIZ];
        char v_answered[SIZ];
        int v_view;
-};
+} visit;
 
 #define V_FORGET       1       /* User has zapped this room        */
 #define V_LOCKOUT      2       /* User is locked out of this room  */