9
0
Fork 0

ss7: Mark the link as down after the shutdown

This commit is contained in:
Holger Hans Peter Freyther 2015-10-09 12:10:49 +02:00
parent 38d37c598c
commit 2c33e2a81e
1 changed files with 3 additions and 1 deletions

View File

@ -369,8 +369,10 @@ static void shutdown_set(struct mtp_link_set *set)
if (!set)
return;
llist_for_each_entry(link, &set->links, entry)
llist_for_each_entry(link, &set->links, entry) {
link->shutdown(link);
mtp_link_down(link);
}
}
int ss7_application_start(struct ss7_application *app)