aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_cp.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-04 11:31:08 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-04 11:31:08 +0000
commit3ef84f3677066f95a67a3df8b9943cf7892a7894 (patch)
tree516f96330eb166f9e4b940cb20ca00cae96c7570 /src/fs/gnunet-service-fs_cp.h
parentfb199b4553100aa977d4d2f4a108bb0a27a705d2 (diff)
downloadgnunet-3ef84f3677066f95a67a3df8b9943cf7892a7894.tar.gz
gnunet-3ef84f3677066f95a67a3df8b9943cf7892a7894.zip
fixes
Diffstat (limited to 'src/fs/gnunet-service-fs_cp.h')
-rw-r--r--src/fs/gnunet-service-fs_cp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fs/gnunet-service-fs_cp.h b/src/fs/gnunet-service-fs_cp.h
index 48a019712..95b2033db 100644
--- a/src/fs/gnunet-service-fs_cp.h
+++ b/src/fs/gnunet-service-fs_cp.h
@@ -26,6 +26,7 @@
26#ifndef GNUNET_SERVICE_FS_CP_H 26#ifndef GNUNET_SERVICE_FS_CP_H
27#define GNUNET_SERVICE_FS_CP_H 27#define GNUNET_SERVICE_FS_CP_H
28 28
29#include "fs.h"
29#include "gnunet-service-fs.h" 30#include "gnunet-service-fs.h"
30 31
31 32
@@ -175,7 +176,7 @@ GSF_peer_connect_handler_ (const struct GNUNET_PeerIdentity *peer,
175 * If the peer disconnects before the transmission can happen, 176 * If the peer disconnects before the transmission can happen,
176 * the callback is invoked with a 'NULL' buffer. 177 * the callback is invoked with a 'NULL' buffer.
177 * 178 *
178 * @param peer target peer 179 * @param cp target peer
179 * @param is_query is this a query (GNUNET_YES) or content (GNUNET_NO) 180 * @param is_query is this a query (GNUNET_YES) or content (GNUNET_NO)
180 * @param priority how important is this request? 181 * @param priority how important is this request?
181 * @param timeout when does this request timeout (call gmc with error) 182 * @param timeout when does this request timeout (call gmc with error)
@@ -185,7 +186,7 @@ GSF_peer_connect_handler_ (const struct GNUNET_PeerIdentity *peer,
185 * @return handle to cancel request 186 * @return handle to cancel request
186 */ 187 */
187struct GSF_PeerTransmitHandle * 188struct GSF_PeerTransmitHandle *
188GSF_peer_transmit_ (struct GSF_ConnectedPeer *peer, 189GSF_peer_transmit_ (struct GSF_ConnectedPeer *cp,
189 int is_query, 190 int is_query,
190 uint32_t priority, 191 uint32_t priority,
191 struct GNUNET_TIME_Relative timeout, 192 struct GNUNET_TIME_Relative timeout,
@@ -225,7 +226,7 @@ GSF_peer_update_performance_ (struct GSF_ConnectedPeer *cp,
225 */ 226 */
226void 227void
227GSF_peer_update_responder_client_ (struct GSF_ConnectedPeer *cp, 228GSF_peer_update_responder_client_ (struct GSF_ConnectedPeer *cp,
228 const struct GSF_LocalClient *initiator_client); 229 struct GSF_LocalClient *initiator_client);
229 230
230 231
231/** 232/**