mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-07-24 15:25:32 -04:00
Added ability to run local shared instance over abstract domain sockets
This commit is contained in:
parent
3483de1fc2
commit
4cd94c776a
4 changed files with 116 additions and 57 deletions
|
@ -29,6 +29,7 @@ import inspect
|
|||
import threading
|
||||
from time import sleep
|
||||
from .vendor import umsgpack as umsgpack
|
||||
from RNS.Interfaces.BackboneInterface import BackboneInterface
|
||||
|
||||
class Transport:
|
||||
"""
|
||||
|
@ -2706,8 +2707,8 @@ class Transport:
|
|||
li.detach()
|
||||
|
||||
RNS.log("Detaching shared instance", RNS.LOG_DEBUG)
|
||||
if shared_instance_master != None:
|
||||
shared_instance_master.detach()
|
||||
if shared_instance_master != None: shared_instance_master.detach()
|
||||
BackboneInterface.deregister_listeners()
|
||||
|
||||
RNS.log("All interfaces detached", RNS.LOG_DEBUG)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue