diff options
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_tls.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/js/40_tls.js b/runtime/js/40_tls.js index da43afaac..e11754b0d 100644 --- a/runtime/js/40_tls.js +++ b/runtime/js/40_tls.js @@ -51,6 +51,7 @@ keyFile, hostname = "0.0.0.0", transport = "tcp", + alpnProtocols, }) { const res = opListenTls({ port, @@ -58,6 +59,7 @@ keyFile, hostname, transport, + alpnProtocols, }); return new TLSListener(res.rid, res.localAddr); } |