Skip to content

Commit

Permalink
#3928 silence Java warnings due to huge command lines
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 9, 2023
1 parent 16b7207 commit 28e4482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/net/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
READ_BUFFER_SIZE = envint("XPRA_READ_BUFFER_SIZE", 65536)
#merge header and packet if packet is smaller than:
PACKET_JOIN_SIZE = envint("XPRA_PACKET_JOIN_SIZE", READ_BUFFER_SIZE)
LARGE_PACKET_SIZE = envint("XPRA_LARGE_PACKET_SIZE", 4096)
LARGE_PACKET_SIZE = envint("XPRA_LARGE_PACKET_SIZE", 8192)
LOG_RAW_PACKET_SIZE = envbool("XPRA_LOG_RAW_PACKET_SIZE", False)
#inline compressed data in packet if smaller than:
INLINE_SIZE = envint("XPRA_INLINE_SIZE", 32768)
Expand Down

0 comments on commit 28e4482

Please sign in to comment.