- fixes
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_channel.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_channel.h
23  * @brief mesh service; dealing with end-to-end channels
24  * @author Bartlomiej Polot
25  *
26  * All functions in this file should use the prefix GMCH (Gnunet Mesh CHannel)
27  */
28
29 #ifndef GNUNET_SERVICE_MESH_CHANNEL_H
30 #define GNUNET_SERVICE_MESH_CHANNEL_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 "platform.h"
41 #include "gnunet_util_lib.h"
42
43 #include "mesh_protocol_enc.h"
44 #include "mesh_enc.h"
45
46 /**
47  * Struct containing all information regarding a channel to a remote client.
48  */
49 struct MeshChannel;
50
51
52 #include "gnunet-service-mesh_tunnel.h"
53
54
55 /**
56  * Get channel ID.
57  *
58  * @param ch Channel.
59  *
60  * @return ID
61  */
62 MESH_ChannelNumber
63 GMCH_get_id (const struct MeshChannel *ch);
64
65 /**
66  * Get the channel tunnel.
67  *
68  * @param ch Channel to get the tunnel from.
69  *
70  * @return tunnel of the channel.
71  */
72 struct MeshTunnel3 *
73 GMCH_get_tunnel (const struct MeshChannel *ch);
74
75 /**
76  * Get free buffer space towards the client on a specific channel.
77  *
78  * @param ch Channel.
79  * @param fwd Is query about FWD traffic?
80  *
81  * @return Free buffer space [0 - 64]
82  */
83 unsigned int
84 GMCH_get_buffer (struct MeshChannel *ch, int fwd);
85
86 /**
87  * Is the root client for this channel on this peer?
88  *
89  * @param ch Channel.
90  * @param fwd Is this for fwd traffic?
91  *
92  * @return GNUNET_YES in case it is.
93  */
94 int
95 GMCH_is_origin (struct MeshChannel *ch, int fwd);
96
97 /**
98  * Is the destination client for this channel on this peer?
99  *
100  * @param ch Channel.
101  * @param fwd Is this for fwd traffic?
102  *
103  * @return GNUNET_YES in case it is.
104  */
105 int
106 GMCH_is_terminal (struct MeshChannel *ch, int fwd);
107
108 /**
109  * Send an end-to-end ACK message for the most recent in-sequence payload.
110  *
111  * If channel is not reliable, do nothing.
112  *
113  * @param ch Channel this is about.
114  * @param fwd Is for FWD traffic? (ACK dest->owner)
115  */
116 void
117 GMCH_send_ack (struct MeshChannel *ch, int fwd);
118
119 /**
120  * Send data on a channel.
121  *
122  * If the destination is local, send it to client, otherwise encrypt and
123  * send to next hop.
124  *
125  * @param ch Channel
126  * @param msg Message.
127  * @param fwd Is this a fwd (root->dest) message?
128  */
129 void
130 GMCH_send_data (struct MeshChannel *ch,
131                 const struct GNUNET_MESH_Data *msg,
132                 int fwd);
133
134 /**
135  * Notify the destination client that a new incoming channel was created.
136  *
137  * @param ch Channel that was created.
138  */
139 void
140 GMCH_send_create (struct MeshChannel *ch);
141
142
143 /**
144  * Notify a client that the channel is no longer valid.
145  *
146  * @param ch Channel that is destroyed.
147  */
148 void
149 GMCH_send_destroy (struct MeshChannel *ch);
150
151
152 /**
153  * Log channel info.
154  *
155  * @param ch Channel.
156  */
157 void
158 GMCH_debug (struct MeshChannel *ch);
159
160
161 /**
162  * Handler for mesh network payload traffic.
163  *
164  * @param ch Channel for the message.
165  * @param message Unencryted data message.
166  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
167  */
168 void
169 GMCH_handle_data (struct MeshChannel *ch,
170                   const struct GNUNET_MESH_Data *msg,
171                   int fwd);
172
173
174 /**
175  * Handler for mesh network traffic end-to-end ACKs.
176  *
177  * @param t Tunnel on which we got this message.
178  * @param message Data message.
179  * @param fwd Is this a fwd ACK? (dest->orig)
180  */
181 void
182 GMCH_handle_data_ack (struct MeshChannel *ch,
183                       const struct GNUNET_MESH_DataACK *msg,
184                       int fwd);
185
186
187 /**
188  * Handler for channel create messages.
189  *
190  * @param t Tunnel this channel is to be created in.
191  * @param msg Message.
192  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
193  */
194 struct MeshChannel *
195 GMCH_handle_create (const struct GNUNET_MESH_ChannelCreate *msg,
196                     int fwd);
197
198
199 /**
200  * Handler for channel ack messages.
201  *
202  * @param t Tunnel this channel is to be created in.
203  * @param msg Message.
204  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
205  */
206 void
207 GMCH_handle_ack (struct MeshChannel *ch,
208                  const struct GNUNET_MESH_ChannelManage *msg,
209                  int fwd);
210
211
212 /**
213  * Handler for channel destroy messages.
214  *
215  * @param t Tunnel this channel is to be destroyed of.
216  * @param msg Message.
217  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
218  */
219 void
220 GMCH_handle_destroy (struct MeshChannel *ch,
221                      const struct GNUNET_MESH_ChannelManage *msg,
222                      int fwd);
223
224
225
226 /**
227  * Sends an already built message on a channel, properly registering
228  * all used resources and encrypting the message with the tunnel's key.
229  *
230  * @param message Message to send. Function makes a copy of it.
231  * @param ch Channel on which this message is transmitted.
232  * @param fwd Is this a fwd message?
233  */
234 void
235 GMCH_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
236                             struct MeshChannel *ch, int fwd);
237
238
239 #if 0                           /* keep Emacsens' auto-indent happy */
240 {
241 #endif
242 #ifdef __cplusplus
243 }
244 #endif
245
246 /* ifndef GNUNET_SERVICE_MESH_CHANNEL_H */
247 #endif
248 /* end of gnunet-service-mesh_channel.h */