fondly remembering ciphertext_send... all the pieces are there, but still doesn't...
[oweals/gnunet.git] / src / include / gnunet_dv_service.h
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
33 extern "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  */
52 struct GNUNET_DV_Handle;
53
54
55 int 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