aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_channel.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-18 10:51:16 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-18 10:51:16 +0100
commita1bd2dcc29c126023dbd1ddf83d7514859d1775b (patch)
tree9e23f546f72f800c6451a9ab717bed6fa87e2ead /src/cadet/gnunet-service-cadet_channel.h
parent4ed4bcba53601d97793663017efcda877c3c490a (diff)
downloadgnunet-a1bd2dcc29c126023dbd1ddf83d7514859d1775b.tar.gz
gnunet-a1bd2dcc29c126023dbd1ddf83d7514859d1775b.zip
cadet message struct and type rename-fest
Diffstat (limited to 'src/cadet/gnunet-service-cadet_channel.h')
-rw-r--r--src/cadet/gnunet-service-cadet_channel.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cadet/gnunet-service-cadet_channel.h b/src/cadet/gnunet-service-cadet_channel.h
index 8faad2e86..c6a1df9ff 100644
--- a/src/cadet/gnunet-service-cadet_channel.h
+++ b/src/cadet/gnunet-service-cadet_channel.h
@@ -224,7 +224,7 @@ GCCH_handle_local_destroy (struct CadetChannel *ch,
224 */ 224 */
225int 225int
226GCCH_handle_local_create (struct CadetClient *c, 226GCCH_handle_local_create (struct CadetClient *c,
227 struct GNUNET_CADET_ChannelCreateMessage *msg); 227 struct GNUNET_CADET_ChannelCreateMessageMessage *msg);
228 228
229/** 229/**
230 * Handler for cadet network payload traffic. 230 * Handler for cadet network payload traffic.
@@ -238,7 +238,7 @@ GCCH_handle_local_create (struct CadetClient *c,
238 */ 238 */
239void 239void
240GCCH_handle_data (struct CadetChannel *ch, 240GCCH_handle_data (struct CadetChannel *ch,
241 const struct GNUNET_CADET_Data *msg, 241 const struct GNUNET_CADET_ChannelDataMessage *msg,
242 int fwd); 242 int fwd);
243 243
244 244
@@ -254,7 +254,7 @@ GCCH_handle_data (struct CadetChannel *ch,
254 */ 254 */
255void 255void
256GCCH_handle_data_ack (struct CadetChannel *ch, 256GCCH_handle_data_ack (struct CadetChannel *ch,
257 const struct GNUNET_CADET_DataACK *msg, 257 const struct GNUNET_CADET_ChannelDataAckMessage *msg,
258 int fwd); 258 int fwd);
259 259
260 260
@@ -268,7 +268,7 @@ GCCH_handle_data_ack (struct CadetChannel *ch,
268 */ 268 */
269struct CadetChannel * 269struct CadetChannel *
270GCCH_handle_create (struct CadetTunnel *t, 270GCCH_handle_create (struct CadetTunnel *t,
271 const struct GNUNET_CADET_ChannelCreate *msg); 271 const struct GNUNET_CADET_ChannelCreateMessage *msg);
272 272
273 273
274/** 274/**
@@ -294,7 +294,7 @@ GCCH_handle_nack (struct CadetChannel *ch);
294 */ 294 */
295void 295void
296GCCH_handle_ack (struct CadetChannel *ch, 296GCCH_handle_ack (struct CadetChannel *ch,
297 const struct GNUNET_CADET_ChannelManage *msg, 297 const struct GNUNET_CADET_ChannelManageMessage *msg,
298 int fwd); 298 int fwd);
299 299
300 300
@@ -310,7 +310,7 @@ GCCH_handle_ack (struct CadetChannel *ch,
310 */ 310 */
311void 311void
312GCCH_handle_destroy (struct CadetChannel *ch, 312GCCH_handle_destroy (struct CadetChannel *ch,
313 const struct GNUNET_CADET_ChannelManage *msg, 313 const struct GNUNET_CADET_ChannelManageMessage *msg,
314 int fwd); 314 int fwd);
315 315
316 316