UDP receiver: Add missing turn_on_light() for no sync mode

This commit is contained in:
Santosh Yadawar 2021-06-10 11:35:29 -07:00
Родитель 95f94192d7
Коммит e5d7a76047
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -271,8 +271,12 @@ void *run_ntttcp_receiver_udp4_stream( struct ntttcp_stream_server * ss )
return 0;
}
/* wait for sync thread to finish */
wait_light_on();
if(ss->no_synch) {
turn_on_light();
} else {
/* wait for sync thread to finish */
wait_light_on();
}
while(1) {
if (ss->endpoint->receiver_exit_after_done &&