Skip to content

Commit

Permalink
#3376 quic is always encrypted
Browse files Browse the repository at this point in the history
so we can send xored passwords using this socket type
  • Loading branch information
totaam committed Dec 8, 2024
1 parent a6e1d44 commit aa7bd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/net/protocol/socket_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def is_closed(self) -> bool:
return self._closed

def is_sending_encrypted(self) -> bool:
return bool(self.cipher_out_name) or self._conn.socktype in ("ssl", "wss", "ssh")
return bool(self.cipher_out_name) or self._conn.socktype in ("ssl", "wss", "ssh", "quic")

def wait_for_io_threads_exit(self, timeout=None) -> bool:
io_threads = (self._read_thread, self._write_thread, self._read_parser_thread, self._read_parser_thread)
Expand Down

0 comments on commit aa7bd5a

Please sign in to comment.