summaryrefslogtreecommitdiff
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.h22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/fs/gnunet-service-fs_pe.h b/src/fs/gnunet-service-fs_pe.h
index dfad71be9..d532b6b71 100644
--- a/src/fs/gnunet-service-fs_pe.h
+++ b/src/fs/gnunet-service-fs_pe.h
@@ -36,8 +36,8 @@
36 * @param pr request with the entry 36 * @param pr request with the entry
37 */ 37 */
38void 38void
39GSF_plan_add_(struct GSF_ConnectedPeer *cp, 39GSF_plan_add_ (struct GSF_ConnectedPeer *cp,
40 struct GSF_PendingRequest *pr); 40 struct GSF_PendingRequest *pr);
41 41
42 42
43/** 43/**
@@ -47,7 +47,7 @@ GSF_plan_add_(struct GSF_ConnectedPeer *cp,
47 * @param cp connected peer 47 * @param cp connected peer
48 */ 48 */
49void 49void
50GSF_plan_notify_peer_disconnect_(const struct GSF_ConnectedPeer *cp); 50GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp);
51 51
52 52
53/** 53/**
@@ -57,7 +57,7 @@ GSF_plan_notify_peer_disconnect_(const struct GSF_ConnectedPeer *cp);
57 * @param pr request that is done 57 * @param pr request that is done
58 */ 58 */
59void 59void
60GSF_plan_notify_request_done_(struct GSF_PendingRequest *pr); 60GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr);
61 61
62/** 62/**
63 * Get the last transmission attempt time for the request plan list 63 * Get the last transmission attempt time for the request plan list
@@ -69,22 +69,26 @@ GSF_plan_notify_request_done_(struct GSF_PendingRequest *pr);
69 * @return GNUNET_YES if 'result' was changed, GNUNET_NO otherwise. 69 * @return GNUNET_YES if 'result' was changed, GNUNET_NO otherwise.
70 */ 70 */
71int 71int
72GSF_request_plan_reference_get_last_transmission_(struct GSF_PendingRequestPlanBijection *pr_head, 72GSF_request_plan_reference_get_last_transmission_ (struct
73 struct GSF_ConnectedPeer *sender, 73 GSF_PendingRequestPlanBijection
74 struct GNUNET_TIME_Absolute *result); 74 *pr_head,
75 struct GSF_ConnectedPeer *
76 sender,
77 struct GNUNET_TIME_Absolute *
78 result);
75 79
76/** 80/**
77 * Initialize plan subsystem. 81 * Initialize plan subsystem.
78 */ 82 */
79void 83void
80GSF_plan_init(void); 84GSF_plan_init (void);
81 85
82 86
83/** 87/**
84 * Shutdown plan subsystem. 88 * Shutdown plan subsystem.
85 */ 89 */
86void 90void
87GSF_plan_done(void); 91GSF_plan_done (void);
88 92
89 93
90#endif 94#endif