aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_dv_service.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-03-14 17:02:29 +0000
committerNathan S. Evans <evans@in.tum.de>2010-03-14 17:02:29 +0000
commit3e812a14846665f56f4d5e94a7285c02810581b0 (patch)
tree7ed1ca8eb7f2d1311261e5a33d67b6c22213b7ea /src/include/gnunet_dv_service.h
parent5fabaa6b5f27ea2b8289f3a1b15cfce270d81368 (diff)
downloadgnunet-3e812a14846665f56f4d5e94a7285c02810581b0.tar.gz
gnunet-3e812a14846665f56f4d5e94a7285c02810581b0.zip
fondly remembering ciphertext_send... all the pieces are there, but still doesn't work. Needs debugging, as usual.
Diffstat (limited to 'src/include/gnunet_dv_service.h')
-rw-r--r--src/include/gnunet_dv_service.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/include/gnunet_dv_service.h b/src/include/gnunet_dv_service.h
new file mode 100644
index 000000000..f7367cd80
--- /dev/null
+++ b/src/include/gnunet_dv_service.h
@@ -0,0 +1,73 @@
1/*
2 This file is part of GNUnet
3 (C) 2009 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 2, 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 include/gnunet_dv_service.h
23 * @brief API to deal with dv service
24 *
25 * @author Christian Grothoff
26 * @author Nathan Evans
27 */
28
29#ifndef GNUNET_DV_SERVICE_H
30#define GNUNET_DV_SERVICE_H
31
32#ifdef __cplusplus
33extern "C"
34{
35#if 0 /* keep Emacsens' auto-indent happy */
36}
37#endif
38#endif
39
40#include "gnunet_common.h"
41#include "gnunet_configuration_lib.h"
42#include "gnunet_scheduler_lib.h"
43
44/**
45 * Version of the dv API.
46 */
47#define GNUNET_DV_VERSION 0x00000000
48
49/**
50 * Opaque handle for the dv service.
51 */
52struct GNUNET_DV_Handle;
53
54
55int GNUNET_DV_send (struct GNUNET_DV_Handle *dv_handle,
56 const struct GNUNET_PeerIdentity *target,
57 const char *msgbuf,
58 size_t msgbuf_size,
59 unsigned int priority,
60 struct GNUNET_TIME_Relative timeout,
61 const void *addr,
62 size_t addrlen);
63
64
65
66#if 0 /* keep Emacsens' auto-indent happy */
67{
68#endif
69#ifdef __cplusplus
70}
71#endif
72
73#endif