Skip to content

Commit

Permalink
frominfo can also be a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 27, 2023
1 parent 6622264 commit 97b28ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/server_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ def start_http_socket(self, socktype:str, conn, socket_options:dict, is_ssl:bool
start_thread(self.start_http, f"{tname}-for-{frominfo}",
daemon=True, args=(socktype, conn, socket_options, is_ssl, req_info, line1, conn.remote))

def start_http(self, socktype:str, conn, socket_options:dict, is_ssl:bool, req_info:str, line1:bytes, frominfo:str) -> None:
def start_http(self, socktype:str, conn, socket_options:dict, is_ssl:bool, req_info:str, line1:bytes, frominfo) -> None:
httplog("start_http(%s, %s, %s, %s, %s, %r, %s) www dir=%s, headers dir=%s",
socktype, conn, socket_options, is_ssl, req_info, line1, frominfo,
self._www_dir, self._http_headers_dirs)
Expand Down

0 comments on commit 97b28ba

Please sign in to comment.