]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_network.h
* Began implementation of a networker use table that doesn't chew up oodles
[citadel.git] / citadel / serv_network.h
index 91a9afb1802ad5546111002362a3ce18524f0563..0c01df98c8dde255893a8ad75a4df72b3d82f550 100644 (file)
@@ -9,11 +9,15 @@ struct SpoolControl {
        struct namelist *ignet_push_shares;
 };
 
-/*
- * Operations that can be performed by network_talking_to()
- */
-enum {
-       NTT_ADD,
-       NTT_REMOVE,
-       NTT_CHECK
+struct RoomProcList {
+        struct RoomProcList *next;
+        char name[ROOMNAMELEN];
 };
+
+struct NetMap {
+       struct NetMap *next;
+       char nodename[SIZ];
+       time_t lastcontact;
+       char nexthop[SIZ];
+};
+