gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: quic: remove debug msg


From: gnunet
Subject: [gnunet] branch master updated: quic: remove debug msg
Date: Wed, 23 Aug 2023 17:23:01 +0200

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

marshall pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new c311186fa quic: remove debug msg
c311186fa is described below

commit c311186fa3ae22cff3d5e9f6cca127d0ee2524ec
Author: marshall <stmr@umich.edu>
AuthorDate: Wed Aug 23 11:22:26 2023 -0400

    quic: remove debug msg
---
 src/transport/gnunet-communicator-quic.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/transport/gnunet-communicator-quic.c 
b/src/transport/gnunet-communicator-quic.c
index 5f111a532..13600a3fb 100644
--- a/src/transport/gnunet-communicator-quic.c
+++ b/src/transport/gnunet-communicator-quic.c
@@ -1411,11 +1411,8 @@ sock_read (void *cls)
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   "handshake established with peer, sending our peer id\n");
       GNUNET_memcpy (my_pid, &my_identity, PEERID_LEN);
-      // send_len = quiche_conn_stream_send (peer->conn->conn, STREAMID_BI, 
my_pid,
-      //                                     PEERID_LEN,
-      //                                     true);
-      send_len = quiche_conn_stream_send (peer->conn->conn, STREAMID_BI, "hi",
-                                          2,
+      send_len = quiche_conn_stream_send (peer->conn->conn, STREAMID_BI, 
my_pid,
+                                          PEERID_LEN,
                                           true);
       if (0 > send_len)
       {
@@ -1429,6 +1426,9 @@ sock_read (void *cls)
       peer->id_sent = GNUNET_YES;
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "setting up peer mq\n");
       setup_peer_mq (peer);
+      /**
+       * After this, we should be all good to send/recv data
+      */
     }
     process_pkt = quiche_conn_recv (peer->conn->conn, buf, rcvd, &recv_info);
     if (0 > process_pkt)

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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