summaryrefslogtreecommitdiffstats
path: root/packages/meshbay-node/src/meshbay_node/daemon.py
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-08-30 22:36:56 +0200
committerChristophe Besson <cbesson@gmail.com>2026-08-30 22:36:56 +0200
commit2d6c276734fd19f80edf84cdb95f91a929df6365 (patch)
tree41a697eb9c048218e0d800cbcb7fa39f4ede2b1d /packages/meshbay-node/src/meshbay_node/daemon.py
parent07e6e4271ea3a45e9cd364eb6ec05801a653d9e8 (diff)
downloadmeshbay-2d6c276734fd19f80edf84cdb95f91a929df6365.tar.gz
feat(ui): configurable ICE interfaces in the Node page
The ice_interfaces setting (auto-exclude vs explicit whitelist) is now editable from the Node page, persisted via the settings API and roster, and hot-swapped at runtime by re-installing the aioice filter. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/src/meshbay_node/daemon.py')
-rw-r--r--packages/meshbay-node/src/meshbay_node/daemon.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/meshbay-node/src/meshbay_node/daemon.py b/packages/meshbay-node/src/meshbay_node/daemon.py
index 51f78b7..5c6d86c 100644
--- a/packages/meshbay-node/src/meshbay_node/daemon.py
+++ b/packages/meshbay-node/src/meshbay_node/daemon.py
@@ -278,6 +278,7 @@ class NodeDaemon:
"max_concurrent_streams": nd.max_concurrent_streams,
"transcode_incompatible_video": nd.transcode_incompatible_video,
"stun_servers": nd.stun_servers if nd.stun_servers else list(DEFAULT_STUN_SERVERS),
+ "ice_interfaces": nd.ice_interfaces,
}
effective = await self._roster.node_settings(defaults)
for k, v in effective.items():