1
0
Fork 0

adding SSL support for SAO

This commit is contained in:
Midorica 2023-11-10 23:20:30 -05:00
parent c4f2232457
commit 0e739b2077
1 changed files with 7 additions and 5 deletions

View File

@ -76,11 +76,13 @@ class SaoServlet(BaseServlet):
return True
def get_allnet_info(self, game_code: str, game_ver: int, keychip: str) -> Tuple[str, str]:
tport = Utils.get_title_port(self.core_cfg)
return (
f"http://{self.core_cfg.title.hostname}:{tport}/",
f"{self.core_cfg.title.hostname}/",
)
if not self.core_cfg.server.is_using_proxy and self.core_cfg.title.port_ssl:
return (
f"https://{self.core_cfg.title.hostname}:{self.core_cfg.title.port_ssl}/",
f"{self.core_cfg.title.hostname}/",
)
return (f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}/", "")
def get_mucha_info(self, core_cfg: CoreConfig, cfg_dir: str) -> Tuple[bool, str]:
if not self.game_cfg.server.enable: