]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_network.h
* Properly implemented the network filter list. Finished the server module and
[citadel.git] / citadel / serv_network.h
index 14ab8b288bcd911585cce01cbfd80b5b7470e167..ed65e04bbbcc0153704cae7a9f1841674cf1aa2f 100644 (file)
@@ -26,3 +26,12 @@ struct UseTable {
        char ut_msgid[SIZ];
        time_t ut_timestamp;
 };
+
+struct FilterList {
+       struct FilterList *next;
+       char fl_user[SIZ];
+       char fl_room[SIZ];
+       char fl_node[SIZ];
+};
+
+extern struct FilterList *filterlist;