Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Nov 28, 2024
1 parent bcaac99 commit c80a444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .builder/actions/tls_server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run(self, env):
sys.stdout.buffer.write(c)

p = subprocess.Popen(["openssl.exe", "s_server",
"-accept", "127.0.0.1:59443",
"-accept", "localhost:59443",
"-key", "tls13.key",
"-cert", "tls13.pem.crt",
"-chainCAfile", "tls13_root_ca.pem.crt",
Expand All @@ -56,7 +56,7 @@ def run(self, env):
print("Return code is {}".format(p.returncode))

p2 = subprocess.Popen(["openssl.exe", "s_client",
"-connect", "127.0.0.1:59443",
"-connect", "localhost:59443",
"-debug", "-state",
"-servername", "localhost",
], cwd=dir, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Expand Down

0 comments on commit c80a444

Please sign in to comment.