RPS: Forgot to add header
[oweals/gnunet.git] / src / include / gnunet_friends_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013 Christian Grothoff
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14     
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21 /**
22  * @author Christian Grothoff
23  *
24  * @file
25  * Library to read and write the FRIENDS file
26  *
27  * @defgroup friends  Friends library
28  * Library to read and write the FRIENDS file
29  * @{
30  */
31 #ifndef GNUNET_FRIENDS_LIB_H
32 #define GNUNET_FRIENDS_LIB_H
33
34 #ifdef __cplusplus
35 extern "C"
36 {
37 #if 0                           /* keep Emacsens' auto-indent happy */
38 }
39 #endif
40 #endif
41
42 #include "gnunet_util_lib.h"
43
44
45 /**
46  * Signature of a function called on each friend found.
47  *
48  * @param cls closure
49  * @param friend_id peer identity of the friend
50  */
51 typedef void (*GNUNET_FRIENDS_Callback)(void *cls,
52                                         const struct GNUNET_PeerIdentity *friend_id);
53
54
55 /**
56  * Parse the FRIENDS file.
57  *
58  * @param cfg our configuration
59  * @param cb function to call on each friend found
60  * @param cb_cls closure for @a cb
61  * @return #GNUNET_OK on success, #GNUNET_SYSERR on parsing errors
62  */
63 int
64 GNUNET_FRIENDS_parse (const struct GNUNET_CONFIGURATION_Handle *cfg,
65                       GNUNET_FRIENDS_Callback cb,
66                       void *cb_cls);
67
68
69 /**
70  * Handle for writing a friends file.
71  */
72 struct GNUNET_FRIENDS_Writer;
73
74
75 /**
76  * Start writing a fresh FRIENDS file.  Will make a backup of the
77  * old one.
78  *
79  * @param cfg configuration to use.
80  * @return NULL on error
81  */
82 struct GNUNET_FRIENDS_Writer *
83 GNUNET_FRIENDS_write_start (const struct GNUNET_CONFIGURATION_Handle *cfg);
84
85
86 /**
87  * Finish writing out the friends file.
88  *
89  * @param w write handle
90  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
91  */
92 int
93 GNUNET_FRIENDS_write_stop (struct GNUNET_FRIENDS_Writer *w);
94
95
96 /**
97  * Add a friend to the friends file.
98  *
99  * @param w write handle
100  * @param friend_id friend to add
101  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
102  */
103 int
104 GNUNET_FRIENDS_write (struct GNUNET_FRIENDS_Writer *w,
105                       const struct GNUNET_PeerIdentity *friend_id);
106
107
108 #if 0                           /* keep Emacsens' auto-indent happy */
109 {
110 #endif
111 #ifdef __cplusplus
112 }
113 #endif
114
115 #endif
116
117 /** @} */  /* end of group */