equal
deleted
inserted
replaced
470 http2TestServer.addHandler(h2_fixedLengthHandler, "/http2/fixed"); |
470 http2TestServer.addHandler(h2_fixedLengthHandler, "/http2/fixed"); |
471 http2TestServer.addHandler(h2_chunkedHandler, "/http2/chunk"); |
471 http2TestServer.addHandler(h2_chunkedHandler, "/http2/chunk"); |
472 http2URI_fixed = "http://" + http2TestServer.serverAuthority() + "/http2/fixed"; |
472 http2URI_fixed = "http://" + http2TestServer.serverAuthority() + "/http2/fixed"; |
473 http2URI_chunk = "http://" + http2TestServer.serverAuthority() + "/http2/chunk"; |
473 http2URI_chunk = "http://" + http2TestServer.serverAuthority() + "/http2/chunk"; |
474 |
474 |
475 https2TestServer = HttpTestServer.of(new Http2TestServer("localhost", true, 0)); |
475 https2TestServer = HttpTestServer.of(new Http2TestServer("localhost", true, sslContext)); |
476 https2TestServer.addHandler(h2_fixedLengthHandler, "/https2/fixed"); |
476 https2TestServer.addHandler(h2_fixedLengthHandler, "/https2/fixed"); |
477 https2TestServer.addHandler(h2_chunkedHandler, "/https2/chunk"); |
477 https2TestServer.addHandler(h2_chunkedHandler, "/https2/chunk"); |
478 https2URI_fixed = "https://" + https2TestServer.serverAuthority() + "/https2/fixed"; |
478 https2URI_fixed = "https://" + https2TestServer.serverAuthority() + "/https2/fixed"; |
479 https2URI_chunk = "https://" + https2TestServer.serverAuthority() + "/https2/chunk"; |
479 https2URI_chunk = "https://" + https2TestServer.serverAuthority() + "/https2/chunk"; |
480 |
480 |