24646963ee2d1f9528582a52e16a8c392a128fe5
[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 #include "../transport/plugin_transport.h"
44
45 /**
46  * Version of the dv API.
47  */
48 #define GNUNET_DV_VERSION 0x00000000
49
50 /**
51  * Opaque handle for the dv service.
52  */
53 struct GNUNET_DV_Handle;
54
55
56 int GNUNET_DV_send (struct GNUNET_DV_Handle *dv_handle,
57                     const struct GNUNET_PeerIdentity *target,
58                     const char *msgbuf,
59                     size_t msgbuf_size,
60                     unsigned int priority,
61                     struct GNUNET_TIME_Relative timeout,
62                     const void *addr,
63                     size_t addrlen,
64                     GNUNET_TRANSPORT_TransmitContinuation
65                     cont, void *cont_cls);
66
67
68
69 #if 0                           /* keep Emacsens' auto-indent happy */
70 {
71 #endif
72 #ifdef __cplusplus
73 }
74 #endif
75
76 #endif