mirror of
https://github.com/coturn/coturn.git
synced 2025-10-28 13:31:16 +01:00
Fix recursive call in delete alternate server (#1250)
I tested the code part by using manual and automated tools for more than 2 years. Fixes #823 When you try to delete an alternate server in the list by using "das :" command on the CLI, the session gets stuck and can't response although alternate server is removed. The problem appears to be related to calling del_alt_server function in the same function recursively. Co-authored-by: CUMHUR KARAHAN <cumhur.karahan@turkcell.com.tr>
This commit is contained in:
parent
0924770181
commit
72cf9ba52b
@ -265,7 +265,6 @@ static void del_alt_server(const char *saddr, int default_port, turn_server_addr
|
|||||||
TURN_LOG_FUNC(TURN_LOG_LEVEL_INFO, "Alternate server removed: %s\n", s);
|
TURN_LOG_FUNC(TURN_LOG_LEVEL_INFO, "Alternate server removed: %s\n", s);
|
||||||
}
|
}
|
||||||
|
|
||||||
del_alt_server(saddr, default_port, list);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user