linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #02612
[Bug 250149] Re: Retry on more possible Coral errors
change the following idioms:
versionInfo = Util::emptyString;
to:
versionInfo.clear();
then this is good to go.
--
Retry on more possible Coral errors
https://bugs.launchpad.net/bugs/250149
You received this bug notification because you are a member of
Dcplusplus-team, which is subscribed to DC++.
Status in DC++: In Progress
Bug description:
>From 0.707 it retiries automatically if the Coral network is not connectable. However, there's still a problem when a transfer fails from Coral or if a Coral server responds with a HTTP error. Devs of DC++ mods also reported this problem, adding that either all kinds of Coral errors should be handled or it should be disabled by default in the further releases. Here is a patch that solves the rest of the problems. Also it seems that the problem when Coral network overloaded so it redirected to a page informing about the network problems is changed. It gives HTTP 503 - Service unavailable for some time, so with the patch this shoud be handled as well.