diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-24 09:03:06 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-24 16:45:38 +0200 |
| commit | ffdb70784f11de0df8162cea5e9f5abfac91ea96 (patch) | |
| tree | 70d7577aaef5e4b5b493444bb8d1d81d8e416ce0 /packages/meshbay-common/src/meshbay_common/protocol.py | |
| parent | fd620dc2b61b5ef6fe72581321f488ebf8faf746 (diff) | |
| download | meshbay-ffdb70784f11de0df8162cea5e9f5abfac91ea96.tar.gz | |
refactor(node): move file browsing and folder/file ops out of webrtc_server
FilesMixin in transport/webrtc/files.py; the blocking disk helpers join
_locate in webrtc/disk.py, and the lease states go to webrtc/limits.py.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-common/src/meshbay_common/protocol.py')
| -rw-r--r-- | packages/meshbay-common/src/meshbay_common/protocol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-common/src/meshbay_common/protocol.py b/packages/meshbay-common/src/meshbay_common/protocol.py index 4df06bf..6b929cd 100644 --- a/packages/meshbay-common/src/meshbay_common/protocol.py +++ b/packages/meshbay-common/src/meshbay_common/protocol.py @@ -321,7 +321,7 @@ def index_entry_wire(e: IndexEntry) -> dict: The wire-dict shape used by INDEX_SYNC/INDEX_DELTA hand-built messages (as opposed to GroupIndex.serialize()'s asdict() encoding of the whole index). Centralized so the three call sites that build these - (webrtc_server._do_index_sync, daemon._broadcast_index_change's two + (webrtc/files.py's _do_index_sync, daemon._broadcast_index_change's two branches) can't drift from each other as fields are added. """ return { |