aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2021-02-24 13:01:02 +0100
committerMartin Schanzenbach <mschanzenbach@posteo.de>2021-02-24 13:01:02 +0100
commit7847eaa0188919dfb7d96c15dc289cbd4e677e58 (patch)
treec2689e8ce3b7c7b22352620d5e713a54d1569ca5
parent2c704e2175d94238e0006192eadf767c9754bb98 (diff)
downloadgnunet-7847eaa0188919dfb7d96c15dc289cbd4e677e58.tar.gz
gnunet-7847eaa0188919dfb7d96c15dc289cbd4e677e58.zip
-towards message exchange
-rw-r--r--src/transport/gnunet-service-tng.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/transport/gnunet-service-tng.c b/src/transport/gnunet-service-tng.c
index a4c7f0517..37ab5ff55 100644
--- a/src/transport/gnunet-service-tng.c
+++ b/src/transport/gnunet-service-tng.c
@@ -4891,6 +4891,9 @@ handle_client_send (void *cls, const struct OutboundMessage *obm)
4891 vl = lookup_virtual_link (&obm->peer); 4891 vl = lookup_virtual_link (&obm->peer);
4892 if (NULL == vl) 4892 if (NULL == vl)
4893 { 4893 {
4894 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4895 "Don't have %s as a neighbour (anymore).\n",
4896 GNUNET_i2s (&obm->peer));
4894 /* Failure: don't have this peer as a neighbour (anymore). 4897 /* Failure: don't have this peer as a neighbour (anymore).
4895 Might have gone down asynchronously, so this is NOT 4898 Might have gone down asynchronously, so this is NOT
4896 a protocol violation by CORE. Still count the event, 4899 a protocol violation by CORE. Still count the event,
@@ -6122,6 +6125,7 @@ activate_core_visible_dv_path (struct DistanceVectorHop *hop)
6122 dv->vl = vl; 6125 dv->vl = vl;
6123 vl->core_recv_window = RECV_WINDOW_SIZE; 6126 vl->core_recv_window = RECV_WINDOW_SIZE;
6124 vl->available_fc_window_size = DEFAULT_WINDOW_SIZE; 6127 vl->available_fc_window_size = DEFAULT_WINDOW_SIZE;
6128 vl->incoming_fc_window_size = DEFAULT_WINDOW_SIZE;
6125 vl->visibility_task = 6129 vl->visibility_task =
6126 GNUNET_SCHEDULER_add_at (hop->path_valid_until, &check_link_down, vl); 6130 GNUNET_SCHEDULER_add_at (hop->path_valid_until, &check_link_down, vl);
6127 GNUNET_break (GNUNET_YES == 6131 GNUNET_break (GNUNET_YES ==
@@ -8047,6 +8051,7 @@ handle_validation_response (
8047 n->vl = vl; 8051 n->vl = vl;
8048 vl->core_recv_window = RECV_WINDOW_SIZE; 8052 vl->core_recv_window = RECV_WINDOW_SIZE;
8049 vl->available_fc_window_size = DEFAULT_WINDOW_SIZE; 8053 vl->available_fc_window_size = DEFAULT_WINDOW_SIZE;
8054 vl->incoming_fc_window_size = DEFAULT_WINDOW_SIZE;
8050 vl->visibility_task = 8055 vl->visibility_task =
8051 GNUNET_SCHEDULER_add_at (q->validated_until, &check_link_down, vl); 8056 GNUNET_SCHEDULER_add_at (q->validated_until, &check_link_down, vl);
8052 GNUNET_break (GNUNET_YES == 8057 GNUNET_break (GNUNET_YES ==