implement get_path_from_route
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet-new_peer.h
index b59a43b861f6c013c098398fc46d3f7aea026397..8a1d3ed5c4ea58eba3965c88dfd1ccc3414d77e2 100644 (file)
@@ -193,13 +193,15 @@ GCP_drop_tunnel (struct CadetPeer *cp,
  * @param cp peer to which the @a path leads to
  * @param path a path looking for an owner; may not be fully initialized yet!
  * @param off offset of @a cp in @a path
+ * @param force for attaching the path
  * @return NULL if this peer does not care to become a new owner,
  *         otherwise the node in the peer's path heap for the @a path.
  */
 struct GNUNET_CONTAINER_HeapNode *
 GCP_attach_path (struct CadetPeer *cp,
                  struct CadetPeerPath *path,
-                 unsigned int off);
+                 unsigned int off,
+                 int force);
 
 
 /**