gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r6641 - GNUnet/src/applications/testing


From: gnunet
Subject: [GNUnet-SVN] r6641 - GNUnet/src/applications/testing
Date: Fri, 28 Mar 2008 13:48:55 -0600 (MDT)

Author: nevans
Date: 2008-03-28 13:48:54 -0600 (Fri, 28 Mar 2008)
New Revision: 6641

Modified:
   GNUnet/src/applications/testing/remote.h
Log:


Modified: GNUnet/src/applications/testing/remote.h
===================================================================
--- GNUnet/src/applications/testing/remote.h    2008-03-28 19:48:04 UTC (rev 
6640)
+++ GNUnet/src/applications/testing/remote.h    2008-03-28 19:48:54 UTC (rev 
6641)
@@ -33,7 +33,31 @@
 #include "gnunet_util.h"
 #include "gnunet_remote_lib.h"
 
+
 /**
+ * Linked list of information about daemon processes.
+ */
+struct GNUNET_REMOTE_host_list
+{
+  struct GNUNET_REMOTE_host_list *next;
+  struct GNUNET_REMOTE_friends_list *friend_entries;
+  char *hostname;
+  char *remote_friend_file_path;
+  char *username;
+  unsigned short port;
+};
+
+/* Simple linked list to store friends lists for each node, 
+ * for writing to the friends file
+ */
+struct GNUNET_REMOTE_friends_list
+{
+  struct GNUNET_REMOTE_friends_list *next;
+  struct GNUNET_REMOTE_host_list *hostentry;
+  GNUNET_EncName *nodeid;
+};
+
+/**
  * Establish a connection between two GNUnet daemons
  *
  * @param port1 client port of the first daemon





reply via email to

[Prev in Thread] Current Thread [Next in Thread]