gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] 14/14: more work on loopback, this time payload tr


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 14/14: more work on loopback, this time payload transmission (for now without flow control)
Date: Mon, 23 Jan 2017 14:42:54 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

commit ec8163cd85687197d910bd668960af800e9fe8ef
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Jan 23 14:42:23 2017 +0100

    more work on loopback, this time payload transmission (for now without flow 
control)
---
 src/cadet/gnunet-service-cadet-new_channel.c | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/src/cadet/gnunet-service-cadet-new_channel.c 
b/src/cadet/gnunet-service-cadet-new_channel.c
index 3d52c67af..673921458 100644
--- a/src/cadet/gnunet-service-cadet-new_channel.c
+++ b/src/cadet/gnunet-service-cadet-new_channel.c
@@ -1350,8 +1350,24 @@ GCCH_handle_local_data (struct CadetChannel *ch,
 
   if (GNUNET_YES == ch->is_loopback)
   {
-    GNUNET_break (0); // fIXME: not implemented
-    return GNUNET_SYSERR;
+    struct CadetClient *receiver;
+    struct GNUNET_MQ_Envelope *env;
+    struct GNUNET_CADET_LocalData *ld;
+
+    env = GNUNET_MQ_msg_extra (ld,
+                               buf_len,
+                               GNUNET_MESSAGE_TYPE_CADET_LOCAL_DATA);
+    receiver = (ch->owner == sender) ? ch->dest : ch->owner;
+    ld->ccn = (ch->owner == sender) ? ch->ccn_dest : ch->ccn_owner;
+    GNUNET_memcpy (&ld[1],
+                   buf,
+                   buf_len);
+    /* FIXME: this does not provide for flow control! */
+    GSC_send_to_client (receiver,
+                        env);
+    send_ack_to_client (ch,
+                        sender);
+    return GNUNET_OK;
   }
 
   /* Everything is correct, send the message. */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]