diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-13 22:49:29 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-14 15:45:27 +0200 |
commit | 5b3c52c50b5301d009fb9a0d44b4cf91d50f6de4 (patch) | |
tree | 4814de0d56b7fe84da2ce507d24cfdf8e100f61e /src/Erebos/ICE/pjproject.c | |
parent | 7fa7cdeb5a8c0c784145df852da8ec4c18cb6e6b (diff) |
Terminate ICE thread when server is stoppedrelease-0.1
Changelog: Improved handling of ICE connections
Diffstat (limited to 'src/Erebos/ICE/pjproject.c')
-rw-r--r-- | src/Erebos/ICE/pjproject.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Erebos/ICE/pjproject.c b/src/Erebos/ICE/pjproject.c index 54da58d..e9446fe 100644 --- a/src/Erebos/ICE/pjproject.c +++ b/src/Erebos/ICE/pjproject.c @@ -216,6 +216,13 @@ void ice_cfg_free( struct erebos_ice_cfg * ecfg ) free( ecfg ); } +void ice_cfg_stop_thread( struct erebos_ice_cfg * ecfg ) +{ + if( ! ecfg ) + return; + ecfg->exit = true; +} + pj_ice_strans * ice_create( const struct erebos_ice_cfg * ecfg, pj_ice_sess_role role, HsStablePtr sptr, HsStablePtr cb ) { |