aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-03-29 06:44:04 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-03-29 06:44:04 +0000
commit60d0c937fb05d3e1c5c40b65761edbcff5934ae6 (patch)
tree4f8f51a85262c53c9879c0e6388487a3fda2ccd2 /src/transport/plugin_transport_udp.c
parent30ce578efc5890c3544b381abadfcb1ba33c7fe7 (diff)
downloadgnunet-60d0c937fb05d3e1c5c40b65761edbcff5934ae6.tar.gz
gnunet-60d0c937fb05d3e1c5c40b65761edbcff5934ae6.zip
debuggging message for "send ACK but no session found" issue
Diffstat (limited to 'src/transport/plugin_transport_udp.c')
-rw-r--r--src/transport/plugin_transport_udp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index e3ee55299..b60de7e05 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -2177,7 +2177,8 @@ ack_proc (void *cls, uint32_t id, const struct GNUNET_MessageHeader *msg)
2177 s = l_ctx.res; 2177 s = l_ctx.res;
2178 if (NULL == s) 2178 if (NULL == s)
2179 { 2179 {
2180 GNUNET_break (0); 2180 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Trying to transmit ACK to peer `%s' but not session found!\n",
2181 GNUNET_a2s(rc->src_addr, rc->addr_len));
2181 return; 2182 return;
2182 } 2183 }
2183 if (s->flow_delay_for_other_peer.rel_value_us <= UINT32_MAX) 2184 if (s->flow_delay_for_other_peer.rel_value_us <= UINT32_MAX)