Fix some shutdown issues in connection tracker code.

This commit is contained in:
2024-05-16 12:41:48 -04:00
parent 523c9c9ad2
commit e56dc207d1
3 changed files with 20 additions and 0 deletions

View File

@ -2565,6 +2565,11 @@ void tf_ssb_destroy(tf_ssb_t* ssb)
}
}
bool tf_ssb_is_shutting_down(tf_ssb_t* ssb)
{
return ssb->shutting_down;
}
void tf_ssb_run(tf_ssb_t* ssb)
{
uv_run(ssb->loop, UV_RUN_DEFAULT);