mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-16 11:24:24 -05:00
probably solved a bug with unstable connections
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1985 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
2ad7d02fa3
commit
68802e1191
@ -240,9 +240,10 @@ int pqiperson::notifyEvent(NetInterface *ni, int newState)
|
|||||||
/* reset all other children? (clear up long UDP attempt) */
|
/* reset all other children? (clear up long UDP attempt) */
|
||||||
for(it = kids.begin(); it != kids.end(); it++)
|
for(it = kids.begin(); it != kids.end(); it++)
|
||||||
{
|
{
|
||||||
if (it->second != activepqi)
|
if (!(it->second)->thisNetInterface(ni))
|
||||||
{
|
{
|
||||||
std::cerr << "Resetting pqi" << std::endl;
|
out << "Resetting pqi ref : " << &(it->second) << std::endl;
|
||||||
|
pqioutput(PQL_DEBUG_BASIC, pqipersonzone, out.str());
|
||||||
it->second->reset();
|
it->second->reset();
|
||||||
} else {
|
} else {
|
||||||
std::cerr << "Active pqi : not resetting." << std::endl;
|
std::cerr << "Active pqi : not resetting." << std::endl;
|
||||||
@ -258,7 +259,7 @@ int pqiperson::notifyEvent(NetInterface *ni, int newState)
|
|||||||
|
|
||||||
if (active)
|
if (active)
|
||||||
{
|
{
|
||||||
if (activepqi == pqi)
|
if (activepqi->thisNetInterface(ni))
|
||||||
{
|
{
|
||||||
pqioutput(PQL_WARNING, pqipersonzone,
|
pqioutput(PQL_WARNING, pqipersonzone,
|
||||||
"CONNECT_FAILED->marking so!");
|
"CONNECT_FAILED->marking so!");
|
||||||
|
Loading…
Reference in New Issue
Block a user