9
0
Fork 0

msc: Stop the msc reconnect timer as well (possible bfd corruption fix)

It appears that we run into a PING timeout before we have received
the first message and then will try to close the connection tiwce.

Stop the msc_timeout when we close down the connection.
This commit is contained in:
Holger Hans Peter Freyther 2010-10-01 20:30:53 +08:00
parent 4776571989
commit 98f6dd5cdc
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ void msc_close_connection(struct bsc_data *bsc)
release_bsc_resources(bsc);
bsc_del_timer(&bsc->ping_timeout);
bsc_del_timer(&bsc->pong_timeout);
bsc_del_timer(&bsc->msc_timeout);
msc_schedule_reconnect(bsc);
}