gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r23788 - gnunet/src/testbed


From: gnunet
Subject: [GNUnet-SVN] r23788 - gnunet/src/testbed
Date: Fri, 14 Sep 2012 12:43:08 +0200

Author: harsha
Date: 2012-09-14 12:43:08 +0200 (Fri, 14 Sep 2012)
New Revision: 23788

Modified:
   gnunet/src/testbed/testbed.h
Log:
added new message for inter-host overlay connects

Modified: gnunet/src/testbed/testbed.h
===================================================================
--- gnunet/src/testbed/testbed.h        2012-09-14 10:33:35 UTC (rev 23787)
+++ gnunet/src/testbed/testbed.h        2012-09-14 10:43:08 UTC (rev 23788)
@@ -401,6 +401,35 @@
 
 
 /**
+ * Message sent from host controller of a peer(A) to the host controller of
+ * another peer(B) to request B to connect to A
+ */
+struct GNUNET_TESTBED_RequestConnectMessage
+{
+  /**
+   * Type is GNUNET_MESSAGE_TYPE_TESTBED_REQUESTCONNECT
+   */
+  struct GNUNET_MessageHeader header;
+
+  /**
+   * The Unique ID of B
+   */
+  uint32_t peer GNUNET_PACKED;
+
+  /**
+   * The Operation ID that is used to identify this operation
+   */
+  uint64_t operation_id GNUNET_PACKED;  
+  
+  /**
+   * To be followed by the HELLO message of A
+   */
+  struct GNUNET_MessageHeader hello[0];
+  
+};
+
+
+/**
  * Event notification from a controller to a client.
  */
 struct GNUNET_TESTBED_PeerEventMessage




reply via email to

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