aboutsummaryrefslogtreecommitdiffstats
path: root/CLAUDE.md
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 01:35:54 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 16:45:37 +0200
commit15e7084bad34edb60a5999994731a8a2ed1dc6c8 (patch)
tree6741ba7be16f214783991fa0278229058cba3037 /CLAUDE.md
parentbf2c2edf8edab5ce546293552a44de2dcc876282 (diff)
downloadmeshbay-15e7084bad34edb60a5999994731a8a2ed1dc6c8.tar.gz
refactor(node): move framing, shared limits and ffmpeg jobs out of webrtc_server
transport/webrtc/channel.py, limits.py and media_tools.py, cut from webrtc_server.py as text; the facade imports them back. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index 19e1afa..b0d9529 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -883,7 +883,7 @@ here are kept only where they are a rule about *editing* the code.
| Indexing, hashing, enrichment | `meshbay_node/indexer/` — `indexer.py`, `cache.py`, `group_index.py`, `enrich*.py`, `title_parse.py` | §6.3 |
| Transfer leases and queueing | `meshbay_node/transfers.py` | §5.5. Deliberately free of asyncio and of the transport |
| Uploads, resume state | `meshbay_node/uploads.py` | §6.4 |
-| WebRTC transport and every MNP handler | `meshbay_node/transport/webrtc_server.py` | the big one |
+| WebRTC transport and every MNP handler | `meshbay_node/transport/webrtc_server.py` | the big one; framing, shared limits and one-shot ffmpeg jobs are in `transport/webrtc/` |
| QUIC transport | `meshbay_node/transport/quic_server.py` | off by default; **must stay at parity with the WebRTC handlers** |
| Background tasks (node) | `webrtc_server.py` — `_spawn()` | the only way to start one; a bare `ensure_future` can be collected |
| Stream handover, backpressure | `webrtc_server.py` — `_replace_stream`, `shutdown_tasks`, `DOWNLOAD_BUFFER_HIGH` | §8.5 |