- too much uncommited work
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_connection.h
1 /*
2      This file is part of GNUnet.
3      (C) 2013 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 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 mesh/gnunet-service-mesh_connection.h
23  * @brief mesh service; dealing with connections
24  * @author Bartlomiej Polot
25  *
26  * All functions in this file should use the prefix GMC (Gnunet Mesh Connection)
27  */
28
29 #ifndef GNUNET_SERVICE_MESH_CONNECTION_H
30 #define GNUNET_SERVICE_MESH_CONNECTION_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_util_lib.h"
41
42
43 struct MeshConnection;
44
45 /**
46  * Initialize the connections subsystem
47  *
48  * @param c Configuration handle.
49  */
50 void
51 GMC_init (struct GNUNET_CONFIGURATION_Handle *c);
52
53 /**
54  * Create a connection.
55  *
56  * @param cid Connection ID.
57  */
58 struct MeshConnection *
59 GMC_new (const struct GNUNET_HashCode *cid);
60
61 /**
62  * Connection is no longer needed: destroy it and remove from tunnel.
63  *
64  * @param c Connection to destroy.
65  */
66 void
67 GMC_destroy (struct MeshConnection *c);
68
69 /**
70  * Count connections in a DLL.
71  */
72 unsigned int
73 GMC_count (const struct MeshConnection *head); 
74
75 /**
76  * Send FWD keepalive packets for a connection.
77  *
78  * @param cls Closure (connection for which to send the keepalive).
79  * @param tc Notification context.
80  */
81 void
82 GMC_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
83
84 /**
85  * Send BCK keepalive packets for a connection.
86  *
87  * @param cls Closure (connection for which to send the keepalive).
88  * @param tc Notification context.
89  */
90 void
91 GMC_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
92
93
94 /**
95  * Change the tunnel state.
96  *
97  * @param c Connection whose state to change.
98  * @param state New state.
99  */
100 void
101 GMC_change_state (struct MeshConnection* c, enum MeshConnectionState state);
102
103 /**
104  * Iterator to notify all connections of a broken link. Mark connections
105  * to destroy after all traffic has been sent.
106  *
107  * @param cls Closure (peer disconnected).
108  * @param key Current key code (tid).
109  * @param value Value in the hash map (connection).
110  *
111  * @return GNUNET_YES if we should continue to iterate,
112  *         GNUNET_NO if not.
113  */
114 int
115 GMC_notify_broken (void *cls,
116                    const struct GNUNET_HashCode *key,
117                    void *value);
118
119 /**
120  * @brief Queue and pass message to core when possible.
121  *
122  * @param cls Closure (@c type dependant). It will be used by queue_send to
123  *            build the message to be sent if not already prebuilt.
124  * @param type Type of the message, 0 for a raw message.
125  * @param size Size of the message.
126  * @param c Connection this message belongs to (cannot be NULL).
127  * @param ch Channel this message belongs to, if applicable (otherwise NULL).
128  * @param fwd Is this a message going root->dest? (FWD ACK are NOT FWD!)
129  */
130 void
131 GMC_queue_add (void* cls,
132                uint16_t type,
133                size_t size,
134                struct MeshConnection* c,
135                struct MeshChannel* ch,
136                int fwd);
137
138
139 /**
140  * Free a transmission that was already queued with all resources
141  * associated to the request.
142  *
143  * @param queue Queue handler to cancel.
144  * @param clear_cls Is it necessary to free associated cls?
145  */
146 void
147 GMC_queue_destroy (struct MeshPeerQueue *queue, int clear_cls);
148
149
150 /**
151  * Core callback to write a queued packet to core buffer
152  *
153  * @param cls Closure (peer info).
154  * @param size Number of bytes available in buf.
155  * @param buf Where the to write the message.
156  *
157  * @return number of bytes written to buf
158  */
159 size_t
160 GMC_queue_send (void *cls, size_t size, void *buf);
161
162
163
164 /**
165  * Is this peer the first one on the connection?
166  *
167  * @param c Connection.
168  * @param fwd Is this about fwd traffic?
169  *
170  * @return GNUNET_YES if origin, GNUNET_NO if relay/terminal.
171  */
172 int
173 GMC_is_origin (struct MeshConnection *c, int fwd);
174
175 /**
176  * Is this peer the last one on the connection?
177  *
178  * @param c Connection.
179  * @param fwd Is this about fwd traffic?
180  *            Note that the ROOT is the terminal for BCK traffic!
181  *
182  * @return GNUNET_YES if terminal, GNUNET_NO if relay/origin.
183  */
184 int
185 GMC_is_terminal (struct MeshConnection *c, int fwd);
186
187
188 #if 0                           /* keep Emacsens' auto-indent happy */
189 {
190 #endif
191 #ifdef __cplusplus
192 }
193 #endif
194
195 /* ifndef GNUNET_SERVICE_MESH_CONNECTION_H */
196 #endif
197 /* end of gnunet-service-mesh_connection.h */