Skip to content

Commit

Permalink
expose quic sockets via mdns
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 24, 2024
1 parent 8802efb commit c58425c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/server/server_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,8 @@ def get_mdns_socktypes(self, socktype:str) -> Tuple[str,...]:
if socktype in ("vsock", "named-pipe"):
#cannot be accessed remotely
return ()
if socktype == "quic":
return ("quic", )
ssh_access = get_ssh_port()>0 #and opts.ssh.lower().strip() not in FALSE_OPTIONS
ssl = bool(self._ssl_attributes)
#only available with the RFBServer
Expand Down

0 comments on commit c58425c

Please sign in to comment.