aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-01-30 12:28:41 +0000
committerBart Polot <bart@net.in.tum.de>2014-01-30 12:28:41 +0000
commit6c98ef466cc1f39ef0ed3f89d1e2eb72870f2b2f (patch)
tree90909605cc1a4a867b42b4f691a36816b8fe2b7f /src
parent05529888601016bba615f1216b719a40ac5b68b9 (diff)
downloadgnunet-6c98ef466cc1f39ef0ed3f89d1e2eb72870f2b2f.tar.gz
gnunet-6c98ef466cc1f39ef0ed3f89d1e2eb72870f2b2f.zip
- debug strings for new message types
Diffstat (limited to 'src')
-rw-r--r--src/mesh/mesh_common.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/mesh/mesh_common.c b/src/mesh/mesh_common.c
index 2e8104e1b..a5e4358aa 100644
--- a/src/mesh/mesh_common.c
+++ b/src/mesh/mesh_common.c
@@ -206,10 +206,35 @@ GM_m2s (uint16_t m)
206 206
207 /** 207 /**
208 * Local monitoring of service. 208 * Local monitoring of service.
209 */ 209 */
210 case 293: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL"; 210 case 293: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL";
211 211
212 /** 212 /**
213 * Local information about all connections of service.
214 */
215 case 294: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CONNECTIONS";
216
217 /**
218 * Local information of service about a specific connection.
219 */
220 case 295: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CONNECTION";
221
222 /**
223 * Local information about all peers known to the service.
224 */
225 case 296: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEERS";
226
227 /**
228 * Local information of service about a specific peer.
229 */
230 case 297: return "GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEER";
231
232 /**
233 * Traffic (net-cat style) used by the Command Line Interface.
234 */
235 case 298: return "GNUNET_MESSAGE_TYPE_MESH_CLI";
236
237 /**
213 * 640kb should be enough for everybody 238 * 640kb should be enough for everybody
214 */ 239 */
215 case 299: return "GNUNET_MESSAGE_TYPE_MESH_RESERVE_END"; 240 case 299: return "GNUNET_MESSAGE_TYPE_MESH_RESERVE_END";