Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(unchunker): initial allowed message size to env var #158

Merged
merged 2 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/src/wslink/chunking.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import sys
import secrets
import msgpack
Expand Down Expand Up @@ -87,7 +88,7 @@ class UnChunker:

def __init__(self):
self.pending_messages = {}
self.max_message_size = 512
self.max_message_size = int(os.environ.get("WSLINK_AUTH_MSG_SIZE", 512))

def set_max_message_size(self, size):
self.max_message_size = size
Expand Down
Loading