plugin->sockv6 = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 0);
if (NULL == plugin->sockv6)
{
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not supported on this system!");
+ GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not supported on this system!\n");
plugin->enable_ipv6 = GNUNET_NO;
}
else
if (p->nc != NULL)
p->nc (p->cb_cls, peer, ats, ats_count);
-#if VERBOSE
char *p2_s;
if (p2 != NULL)
"Peers %s connected to peer %u (`%s')\n", p2_s, p->no,
GNUNET_i2s (&p->id));
GNUNET_free (p2_s);
-#endif
-
/* Find ConnectingContext */
struct ConnectingContext *cc = find_connecting_context (p->tth, p, p2);
GNUNET_assert (GNUNET_OK ==
GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
message, &p->id));
-#if VERBOSE
- size_t size =
- GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message *) message);
-#endif
GNUNET_free_non_null (p->hello);
p->hello = (struct GNUNET_HELLO_Message *) GNUNET_copy_message (message);
-#if VERBOSE
- GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
- "New HELLO for peer %u (`%s') with size %u\n", p->no,
- GNUNET_i2s (&p->id), size);
-#endif
-
if (p->start_cb != NULL)
{
-#if VERBOSE
GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
"Peer %u (`%s') successfully started\n", p->no,
GNUNET_i2s (&p->id));
-#endif
+
p->start_cb (p, p->cb_cls);
p->start_cb = NULL;
}
GNUNET_assert (p->ghh != NULL);
GNUNET_CONTAINER_DLL_insert (tth->p_head, tth->p_tail, p);
-
return p;
}
GNUNET_CONTAINER_DLL_remove (tth->p_head, tth->p_tail, p);
+ GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
+ "Peer %u (`%s') stopped \n", p->no,
+ GNUNET_i2s (&p->id));
+
GNUNET_free (p);
p = NULL;
}