- dead code
authorBart Polot <bart@net.in.tum.de>
Fri, 15 Nov 2013 15:28:22 +0000 (15:28 +0000)
committerBart Polot <bart@net.in.tum.de>
Fri, 15 Nov 2013 15:28:22 +0000 (15:28 +0000)
src/mesh/gnunet-service-mesh_channel.c
src/mesh/gnunet-service-mesh_channel.h

index 1f4e39ec9918995082075d3f8d0702e4eecf17e3..0228e853202459c473929d628fb2e083e9352e88 100644 (file)
@@ -1174,34 +1174,6 @@ GMCH_send_destroy (struct MeshChannel *ch)
 }
 
 
-/**
- * Send data on a channel.
- *
- * If the destination is local, send it to client, otherwise encrypt and
- * send to next hop.
- *
- * @param ch Channel
- * @param msg Message.
- * @param fwd Is this a fwd (root->dest) message?
- */
-void
-GMCH_send_data (struct MeshChannel *ch,
-                const struct GNUNET_MESH_Data *msg,
-                int fwd)
-{
-  if (GMCH_is_terminal (ch, fwd))
-  {
-    GML_send_data (fwd ? ch->dest : ch->root,
-                   msg,
-                   fwd ? ch->lid_dest : ch->lid_root);
-  }
-  else
-  {
-    GMT_send_prebuilt_message (&msg->header, ch->t, ch, fwd, NULL, NULL);
-  }
-}
-
-
 /**
  * Send an end-to-end ACK message for the most recent in-sequence payload.
  *
index c6e051356a5d7504cc6f00acf878b0bd1c3c0c07..461aef5626df793f686e6686ccf4a631010c7d58 100644 (file)
@@ -119,21 +119,6 @@ GMCH_is_origin (struct MeshChannel *ch, int fwd);
 int
 GMCH_is_terminal (struct MeshChannel *ch, int fwd);
 
-/**
- * Send data on a channel.
- *
- * If the destination is local, send it to client, otherwise encrypt and
- * send to next hop.
- *
- * @param ch Channel
- * @param msg Message.
- * @param fwd Is this a fwd (root->dest) message?
- */
-void
-GMCH_send_data (struct MeshChannel *ch,
-                const struct GNUNET_MESH_Data *msg,
-                int fwd);
-
 /**
  * Send an end-to-end ACK message for the most recent in-sequence payload.
  *