1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

rtp: add missing stop handler

This commit is contained in:
Steffen Vogel 2019-01-08 22:53:04 +01:00
parent 8322b0615a
commit 0afadb6c19

View file

@ -211,6 +211,11 @@ static void * th_func(void *arg)
return NULL;
}
static void stop_handler(int sig, siginfo_t *si, void *ctx)
{
re_cancel();
}
int rtp_type_start()
{
int ret;
@ -253,6 +258,7 @@ int rtp_type_stop()
}
libre_close();
return ret;
}