mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 19:04:25 -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) */
|
||||
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();
|
||||
} else {
|
||||
std::cerr << "Active pqi : not resetting." << std::endl;
|
||||
@ -258,7 +259,7 @@ int pqiperson::notifyEvent(NetInterface *ni, int newState)
|
||||
|
||||
if (active)
|
||||
{
|
||||
if (activepqi == pqi)
|
||||
if (activepqi->thisNetInterface(ni))
|
||||
{
|
||||
pqioutput(PQL_WARNING, pqipersonzone,
|
||||
"CONNECT_FAILED->marking so!");
|
||||
|
Loading…
Reference in New Issue
Block a user