Skip to content

Commit

Permalink
#3666 we don't support binding to hyperv sockets yet
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 16, 2024
1 parent d103063 commit 1690ca0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion xpra/scripts/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,6 @@ def add_query() -> None:
"hyperv": (vmid, service),
}
)
print("hyperv1")
opts.display = display_name
return desc

Expand Down
3 changes: 3 additions & 0 deletions xpra/server/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,9 @@ def init_http_scripts(self, http_scripts: str):
# authentication:
def init_auth(self, opts) -> None:
for x in SOCKET_TYPES:
if x == "hyperv":
# we don't support listening on hyperv sockets yet
continue
if x in ("socket", "named-pipe"):
# use local-auth for these:
opts_value = opts.auth
Expand Down

0 comments on commit 1690ca0

Please sign in to comment.