aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pe.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-02-07 21:53:52 +0000
committerChristian Grothoff <christian@grothoff.org>2011-02-07 21:53:52 +0000
commitde952b871bfe79a7f2b79d9ab04dc37933d49bf1 (patch)
treeb40e7dd51794a85a8334406039b10a46bd50581f /src/fs/gnunet-service-fs_pe.c
parent4cdb30b30384ea6baf3da993966974001f200b37 (diff)
downloadgnunet-de952b871bfe79a7f2b79d9ab04dc37933d49bf1.tar.gz
gnunet-de952b871bfe79a7f2b79d9ab04dc37933d49bf1.zip
stuff
Diffstat (limited to 'src/fs/gnunet-service-fs_pe.c')
-rw-r--r--src/fs/gnunet-service-fs_pe.c101
1 files changed, 101 insertions, 0 deletions
diff --git a/src/fs/gnunet-service-fs_pe.c b/src/fs/gnunet-service-fs_pe.c
new file mode 100644
index 000000000..ec6f315ff
--- /dev/null
+++ b/src/fs/gnunet-service-fs_pe.c
@@ -0,0 +1,101 @@
1/*
2 This file is part of GNUnet.
3 (C) 2011 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file fs/gnunet-service-fs_pe.c
23 * @brief API to manage query plan
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet-service-fs_pe.h"
28
29
30/**
31 * Create a new query plan entry.
32 *
33 * @param cp peer with the entry
34 * @param pr request with the entry
35 * @param weight determines position of the entry in the cp queue,
36 * lower weights are earlier in the queue
37 */
38void
39GSF_plan_add_ (struct GSF_ConnectedPeer *cp,
40 struct GSF_PendingRequest *pr,
41 double weight)
42{
43 // FIXME
44}
45
46
47/**
48 * Notify the plan about a peer being no longer available;
49 * destroy all entries associated with this peer.
50 *
51 * @param cp connected peer
52 */
53void
54GSF_plan_notify_peer_disconnect_ (struct GSF_ConnectedPeer *cp)
55{
56 // FIXME
57}
58
59
60/**
61 * Notify the plan about a request being done;
62 * destroy all entries associated with this request.
63 *
64 * @param pr request that is done
65 */
66void
67GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr)
68{
69 // FIXME
70}
71
72
73/**
74 * Get the lowest-weight entry for the respective peer
75 * from the plan. Removes the entry from the plan's queue.
76 *
77 * @param cp connected peer to query for the next request
78 * @return NULL if the queue for this peer is empty
79 */
80struct GSF_PendingRequest *
81GSF_plan_get_ (struct GSF_ConnectedPeer *cp)
82{
83 return NULL; // FIXME
84}
85
86
87/**
88 * Get the size of the request queue for the given peer.
89 *
90 * @param cp connected peer to query
91 * @return number of entries in this peer's request queue
92 */
93unsigned int
94GSF_plan_size_ (struct GSF_ConnectedPeer *cp)
95{
96 return 0; // FIXME
97}
98
99
100
101/* end of gnunet-service-fs_pe.h */