aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_connection.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_connection.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_connection.h')
-rw-r--r--src/cadet/gnunet-service-cadet_connection.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cadet/gnunet-service-cadet_connection.h b/src/cadet/gnunet-service-cadet_connection.h
index 3d3e8adbe..6df307dd1 100644
--- a/src/cadet/gnunet-service-cadet_connection.h
+++ b/src/cadet/gnunet-service-cadet_connection.h
@@ -125,7 +125,7 @@ typedef void
125 */ 125 */
126void 126void
127GCC_handle_create (struct CadetPeer *peer, 127GCC_handle_create (struct CadetPeer *peer,
128 const struct GNUNET_CADET_ConnectionCreate *msg); 128 const struct GNUNET_CADET_ConnectionCreateMessage *msg);
129 129
130 130
131/** 131/**
@@ -136,7 +136,7 @@ GCC_handle_create (struct CadetPeer *peer,
136 */ 136 */
137void 137void
138GCC_handle_confirm (struct CadetPeer *peer, 138GCC_handle_confirm (struct CadetPeer *peer,
139 const struct GNUNET_CADET_ConnectionACK *msg); 139 const struct GNUNET_CADET_ConnectionCreateMessageAckMessage *msg);
140 140
141 141
142/** 142/**
@@ -147,7 +147,7 @@ GCC_handle_confirm (struct CadetPeer *peer,
147 */ 147 */
148void 148void
149GCC_handle_broken (struct CadetPeer *peer, 149GCC_handle_broken (struct CadetPeer *peer,
150 const struct GNUNET_CADET_ConnectionBroken *msg); 150 const struct GNUNET_CADET_ConnectionBrokenMessage *msg);
151 151
152/** 152/**
153 * Handler for notifications of destroyed connections. 153 * Handler for notifications of destroyed connections.
@@ -157,7 +157,7 @@ GCC_handle_broken (struct CadetPeer *peer,
157 */ 157 */
158void 158void
159GCC_handle_destroy (struct CadetPeer *peer, 159GCC_handle_destroy (struct CadetPeer *peer,
160 const struct GNUNET_CADET_ConnectionDestroy *msg); 160 const struct GNUNET_CADET_ConnectionDestroyMessage *msg);
161 161
162/** 162/**
163 * Handler for cadet network traffic hop-by-hop acks. 163 * Handler for cadet network traffic hop-by-hop acks.
@@ -167,7 +167,7 @@ GCC_handle_destroy (struct CadetPeer *peer,
167 */ 167 */
168void 168void
169GCC_handle_ack (struct CadetPeer *peer, 169GCC_handle_ack (struct CadetPeer *peer,
170 const struct GNUNET_CADET_ACK *msg); 170 const struct GNUNET_CADET_ConnectionEncryptedAckMessage *msg);
171 171
172/** 172/**
173 * Handler for cadet network traffic hop-by-hop data counter polls. 173 * Handler for cadet network traffic hop-by-hop data counter polls.
@@ -177,7 +177,7 @@ GCC_handle_ack (struct CadetPeer *peer,
177 */ 177 */
178void 178void
179GCC_handle_poll (struct CadetPeer *peer, 179GCC_handle_poll (struct CadetPeer *peer,
180 const struct GNUNET_CADET_Poll *msg); 180 const struct GNUNET_CADET_ConnectionHopByHopPollMessage *msg);
181 181
182/** 182/**
183 * Handler for key exchange traffic (Axolotl KX). 183 * Handler for key exchange traffic (Axolotl KX).
@@ -187,7 +187,7 @@ GCC_handle_poll (struct CadetPeer *peer,
187 */ 187 */
188void 188void
189GCC_handle_kx (struct CadetPeer *peer, 189GCC_handle_kx (struct CadetPeer *peer,
190 const struct GNUNET_CADET_KX *msg); 190 const struct GNUNET_CADET_TunnelKeyExchangeMessage *msg);
191 191
192/** 192/**
193 * Handler for encrypted cadet network traffic (channel mgmt, data). 193 * Handler for encrypted cadet network traffic (channel mgmt, data).
@@ -197,7 +197,7 @@ GCC_handle_kx (struct CadetPeer *peer,
197 */ 197 */
198void 198void
199GCC_handle_encrypted (struct CadetPeer *peer, 199GCC_handle_encrypted (struct CadetPeer *peer,
200 const struct GNUNET_CADET_Encrypted *msg); 200 const struct GNUNET_CADET_ConnectionEncryptedMessage *msg);
201 201
202/** 202/**
203 * Core handler for axolotl key exchange traffic. 203 * Core handler for axolotl key exchange traffic.