aboutsummaryrefslogtreecommitdiff
path: root/src/datacache/datacache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datacache/datacache.c')
-rw-r--r--src/datacache/datacache.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/datacache/datacache.c b/src/datacache/datacache.c
index 0646019bd..2a83e07a7 100644
--- a/src/datacache/datacache.c
+++ b/src/datacache/datacache.c
@@ -2,20 +2,18 @@
2 This file is part of GNUnet 2 This file is part of GNUnet
3 Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2015 GNUnet e.V. 3 Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2015 GNUnet e.V.
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software: you can redistribute it and/or modify it
6 it under the terms of the GNU General Public License as published 6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation; either version 3, or (at your 7 by the Free Software Foundation, either version 3 of the License,
8 option) any later version. 8 or (at your option) any later version.
9 9
10 GNUnet is distributed in the hope that it will be useful, but 10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/ 17*/
20/** 18/**
21 * @file datacache/datacache.c 19 * @file datacache/datacache.c
@@ -260,6 +258,7 @@ GNUNET_DATACACHE_destroy (struct GNUNET_DATACACHE_Handle *h)
260 * 258 *
261 * @param h handle to the datacache 259 * @param h handle to the datacache
262 * @param key key to store data under 260 * @param key key to store data under
261 * @param xor_distance distance of @a key to our PID
263 * @param data_size number of bytes in @a data 262 * @param data_size number of bytes in @a data
264 * @param data data to store 263 * @param data data to store
265 * @param type type of the value 264 * @param type type of the value
@@ -271,6 +270,7 @@ GNUNET_DATACACHE_destroy (struct GNUNET_DATACACHE_Handle *h)
271int 270int
272GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h, 271GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h,
273 const struct GNUNET_HashCode *key, 272 const struct GNUNET_HashCode *key,
273 uint32_t xor_distance,
274 size_t data_size, 274 size_t data_size,
275 const char *data, 275 const char *data,
276 enum GNUNET_BLOCK_Type type, 276 enum GNUNET_BLOCK_Type type,
@@ -282,6 +282,7 @@ GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h,
282 282
283 used = h->api->put (h->api->cls, 283 used = h->api->put (h->api->cls,
284 key, 284 key,
285 xor_distance,
285 data_size, 286 data_size,
286 data, 287 data,
287 type, 288 type,
@@ -313,7 +314,8 @@ GNUNET_DATACACHE_put (struct GNUNET_DATACACHE_Handle *h,
313 1, 314 1,
314 GNUNET_NO); 315 GNUNET_NO);
315 while (h->utilization + used > h->env.quota) 316 while (h->utilization + used > h->env.quota)
316 GNUNET_assert (GNUNET_OK == h->api->del (h->api->cls)); 317 GNUNET_assert (GNUNET_OK ==
318 h->api->del (h->api->cls));
317 h->utilization += used; 319 h->utilization += used;
318 return GNUNET_OK; 320 return GNUNET_OK;
319} 321}