summaryrefslogtreecommitdiff
path: root/src/peerstore/peerstore_api.c
diff options
context:
space:
mode:
authorOmar Tarabai <tarabai@devegypt.com>2014-04-24 13:37:25 +0000
committerOmar Tarabai <tarabai@devegypt.com>2014-04-24 13:37:25 +0000
commitf015cd159b655472ca40b4d6e00e7fa749885b36 (patch)
treeb6d9c2994ccae4a13689e89de703dcdd8e0425ea /src/peerstore/peerstore_api.c
parent09f54d47b7b9bac7da57457f4188aeb4821b5605 (diff)
downloadgnunet-f015cd159b655472ca40b4d6e00e7fa749885b36.tar.gz
gnunet-f015cd159b655472ca40b4d6e00e7fa749885b36.zip
PEERSTORE initial commit
Diffstat (limited to 'src/peerstore/peerstore_api.c')
-rw-r--r--src/peerstore/peerstore_api.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/peerstore/peerstore_api.c b/src/peerstore/peerstore_api.c
new file mode 100644
index 000000000..02c8d69df
--- /dev/null
+++ b/src/peerstore/peerstore_api.c
@@ -0,0 +1,47 @@
1/*
2 This file is part of GNUnet.
3 (C)
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 peerstore/peerstore_api.c
23 * @brief API for peerstore
24 * @author Omar Tarabai
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "peerstore.h"
29
30#define LOG(kind,...) GNUNET_log_from (kind, "peerstore-api",__VA_ARGS__)
31
32/******************************************************************************/
33/************************ DATA STRUCTURES ****************************/
34/******************************************************************************/
35
36
37/******************************************************************************/
38/*********************** DECLARATIONS *************************/
39/******************************************************************************/
40
41
42/******************************************************************************/
43/******************* CONNECTION FUNCTIONS *********************/
44/******************************************************************************/
45
46
47/* end of peerstore_api.c */