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 09:50:39 +0200 |
commit | 1c4251052feb63adf6f54a1269cbedd546ff9797 (patch) | |
tree | 93f3ab6e8c50913ea8990d797f307e333d64f5da /src/Erebos/Service.hs | |
parent | d24223e204bedfa4f0e57db55b039cffa9811357 (diff) |
Terminate ICE thread when server is stopped
Changelog: Improved handling of ICE connections
Diffstat (limited to 'src/Erebos/Service.hs')
-rw-r--r-- | src/Erebos/Service.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Erebos/Service.hs b/src/Erebos/Service.hs index 9030d04..fefc503 100644 --- a/src/Erebos/Service.hs +++ b/src/Erebos/Service.hs @@ -72,6 +72,9 @@ class ( serviceStorageWatchers :: proxy s -> [SomeStorageWatcher s] serviceStorageWatchers _ = [] + serviceStopServer :: proxy s -> Server -> ServiceGlobalState s -> [ ( Peer, ServiceState s ) ] -> IO () + serviceStopServer _ _ _ _ = return () + data SomeService = forall s. Service s => SomeService (Proxy s) (ServiceAttributes s) |