NetworkConfig: move to RoomNetworkConfig; move NTT-List into its own file.
[citadel.git] / citadel / modules / network / netspool.h
index 34e13acae9ddebcf1654c99143ce1600dd5a72fa..7d751727791a3376f07402f2619fbda7cd0b0b8d 100644 (file)
  *
  */
 
-typedef struct maplist maplist;
+typedef struct MapList MapList;
 
-struct maplist {
-       struct maplist *next;
+struct MapList {
+       MapList *next;
        StrBuf *remote_nodename;
        StrBuf *remote_roomname;
 };
@@ -56,4 +56,3 @@ void network_consolidate_spoolout(HashList *working_ignetcfg, HashList *the_netm
 void free_spoolcontrol_struct(SpoolControl **scc);
 int writenfree_spoolcontrol_file(SpoolControl **scc, char *filename);
 int read_spoolcontrol_file(SpoolControl **scc, char *filename);
-int is_recipient(OneRoomNetCfg *RNCfg, const char *Name);