aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-service-fs_pe.h')
-rw-r--r--src/fs/gnunet-service-fs_pe.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/fs/gnunet-service-fs_pe.h b/src/fs/gnunet-service-fs_pe.h
index cfaeabe22..23787908e 100644
--- a/src/fs/gnunet-service-fs_pe.h
+++ b/src/fs/gnunet-service-fs_pe.h
@@ -35,8 +35,8 @@
35 * @param cp peer with the entry 35 * @param cp peer with the entry
36 * @param pr request with the entry 36 * @param pr request with the entry
37 */ 37 */
38void GSF_plan_add_ (struct GSF_ConnectedPeer *cp, 38void
39 struct GSF_PendingRequest *pr); 39GSF_plan_add_ (struct GSF_ConnectedPeer *cp, struct GSF_PendingRequest *pr);
40 40
41 41
42/** 42/**
@@ -45,7 +45,8 @@ void GSF_plan_add_ (struct GSF_ConnectedPeer *cp,
45 * 45 *
46 * @param cp connected peer 46 * @param cp connected peer
47 */ 47 */
48void GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp); 48void
49GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp);
49 50
50 51
51/** 52/**
@@ -54,19 +55,22 @@ void GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp);
54 * 55 *
55 * @param pr request that is done 56 * @param pr request that is done
56 */ 57 */
57void GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr); 58void
59GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr);
58 60
59 61
60/** 62/**
61 * Initialize plan subsystem. 63 * Initialize plan subsystem.
62 */ 64 */
63void GSF_plan_init (void); 65void
66GSF_plan_init (void);
64 67
65 68
66/** 69/**
67 * Shutdown plan subsystem. 70 * Shutdown plan subsystem.
68 */ 71 */
69void GSF_plan_done (void); 72void
73GSF_plan_done (void);
70 74
71 75
72#endif 76#endif