aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-01-28 14:44:20 +0000
committerNathan S. Evans <evans@in.tum.de>2010-01-28 14:44:20 +0000
commit5862db4ccf01ab566a66b243f374e69379d8b1c9 (patch)
tree0389628049af049d355e7dbad908e2f7516806ab /src
parentc721d0136a2746f029744d851d3ea164c3ee1b60 (diff)
downloadgnunet-5862db4ccf01ab566a66b243f374e69379d8b1c9.tar.gz
gnunet-5862db4ccf01ab566a66b243f374e69379d8b1c9.zip
found the bug, test cases should now work
Diffstat (limited to 'src')
-rw-r--r--src/transport/plugin_transport_tcp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index fd6dc7506..c302971cb 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -38,7 +38,7 @@
38#include "plugin_transport.h" 38#include "plugin_transport.h"
39#include "transport.h" 39#include "transport.h"
40 40
41#define DEBUG_TCP GNUNET_YES 41#define DEBUG_TCP GNUNET_NO
42 42
43/** 43/**
44 * How long until we give up on transmitting the welcome message? 44 * How long until we give up on transmitting the welcome message?
@@ -1110,6 +1110,7 @@ handle_tcp_data (void *cls,
1110 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 1110 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1111 "tcp", "Received a welcome, NOT sending to clients!\n"); 1111 "tcp", "Received a welcome, NOT sending to clients!\n");
1112#endif 1112#endif
1113 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1113 return; /* We don't want to propagate WELCOME messages up! */ 1114 return; /* We don't want to propagate WELCOME messages up! */
1114 } 1115 }
1115 else 1116 else