gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r24177 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r24177 - gnunet/src/mesh
Date: Thu, 4 Oct 2012 14:25:14 +0200

Author: bartpolot
Date: 2012-10-04 14:25:14 +0200 (Thu, 04 Oct 2012)
New Revision: 24177

Modified:
   gnunet/src/mesh/mesh_protocol.h
Log:
- New mesh message


Modified: gnunet/src/mesh/mesh_protocol.h
===================================================================
--- gnunet/src/mesh/mesh_protocol.h     2012-10-04 12:24:54 UTC (rev 24176)
+++ gnunet/src/mesh/mesh_protocol.h     2012-10-04 12:25:14 UTC (rev 24177)
@@ -227,6 +227,33 @@
 };
 
 /**
+ * Message to query a peer about its Flow Control status regarding a tunnel.
+ */
+struct GNUNET_MESH_Poll
+{
+  /**
+   * Type: GNUNET_MESSAGE_TYPE_MESH_POLL
+   */
+  struct GNUNET_MessageHeader header;
+  
+  /**
+   * TID of the tunnel
+   */
+  uint32_t tid GNUNET_PACKED;
+  
+  /**
+   * OID of the tunnel
+   */
+  struct GNUNET_PeerIdentity oid;
+  
+  /**
+   * Last ACK received.
+   */
+  uint32_t last_ack;
+  
+};
+
+/**
  * Message for ack'ing a path
  */
 struct GNUNET_MESH_PathACK




reply via email to

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