Add missing tlsOptions to http2 example

このコミットが含まれているのは:
AJ ONeal 2020-08-03 06:37:24 +00:00
コミット ca0ba9bc68
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -26,7 +26,8 @@ function httpsWorker(glx) {
//
// Get the raw http2 server:
var http2Server = glx.http2Server(function(req, res) {
var tlsOptions = null;
var http2Server = glx.http2Server(tlsOptions, function(req, res) {
res.end("Hello, Encrypted World!");
});