so that some of the 'local' IPs do not work due to the bindto); the result
seems to be that the plugin tries some of the broken addresses, fails and the
transport-level connection never comes up.
+* Mantis:
+ - 1727 --- investigate (NEW)
+ - 1694 --- try to reproduce (non-deterministic, w. testcase, need core/valgrind)
+ - 1725 --- try to reproduce (non-deterministic, w. testcase, need core)
+ - 1724 --- try to reproduce
+ - 1709 --- need more data (Nate)
+ - 1717 --- need more data (Nate)
+ - 1701 --- try to reproduce (Nate)
+ - 1705 --- try to reproduce (Nate)
* clean buildbots
0.9.0pre4:
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"Transport service is unloading plugins...\n");
#endif
- plug = plugins;
- while (plug != NULL)
+ while (NULL != (plug = plugins))
{
if (plug->address_update_task != GNUNET_SCHEDULER_NO_TASK)
{
plug->addresses = al->next;
GNUNET_free (al);
}
- tmp = plug->next;
+ plugins = plug->next;
GNUNET_free (plug);
- plug = tmp;
}
if (my_private_key != NULL)
GNUNET_CRYPTO_rsa_key_free (my_private_key);