blob: 7d458f4bf5393890a4e7251e2d2e4deb0f798b25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
"""Limits read by more than one part of the WebRTC session."""
CHUNK_SIZE = 1024 * 1024
MAX_MSG = 64 * 1024 * 1024
# What the `tr` on a chunk request turned out to be (see `_lease_of`).
LEASE_GRANTED = "granted"
LEASE_QUEUED = "queued"
LEASE_NONE = "none"
|