aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-12-16 22:53:48 +0000
committerBart Polot <bart@net.in.tum.de>2013-12-16 22:53:48 +0000
commit48d7fbf76d18f0a04076471ecd7044b465fba1e5 (patch)
tree6925552ecf0417d893ef17c3607a5ee539be80a4
parenta2508bce6dc23f0ada127682dc16d59e82d2e78e (diff)
downloadgnunet-48d7fbf76d18f0a04076471ecd7044b465fba1e5.tar.gz
gnunet-48d7fbf76d18f0a04076471ecd7044b465fba1e5.zip
- not a protocol break, plausible asyc msg
-rw-r--r--src/mesh/gnunet-service-mesh_connection.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.c b/src/mesh/gnunet-service-mesh_connection.c
index 65cea3d69..0f81a3460 100644
--- a/src/mesh/gnunet-service-mesh_connection.c
+++ b/src/mesh/gnunet-service-mesh_connection.c
@@ -1975,7 +1975,7 @@ GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1975 1975
1976 LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n"); 1976 LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1977 LOG (GNUNET_ERROR_TYPE_DEBUG, 1977 LOG (GNUNET_ERROR_TYPE_DEBUG,
1978 "Got a POLL packet from %s!\n", 1978 "Got a POLL message from %s!\n",
1979 GNUNET_i2s (peer)); 1979 GNUNET_i2s (peer));
1980 1980
1981 msg = (struct GNUNET_MESH_Poll *) message; 1981 msg = (struct GNUNET_MESH_Poll *) message;
@@ -1986,7 +1986,9 @@ GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1986 { 1986 {
1987 GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1, 1987 GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
1988 GNUNET_NO); 1988 GNUNET_NO);
1989 GNUNET_break_op (0); 1989 LOG (GNUNET_ERROR_TYPE_DEBUG,
1990 "WARNING POLL message on unknown connection %s!\n",
1991 GNUNET_h2s (&msg->cid));
1990 return GNUNET_OK; 1992 return GNUNET_OK;
1991 } 1993 }
1992 1994