--- old/src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLTunnelConnection.java 2021-04-20 09:54:33.126759024 +0200 +++ new/src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLTunnelConnection.java 2021-04-20 09:54:33.030756856 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -124,6 +124,11 @@ } @Override + InetSocketAddress proxy() { + return plainConnection.proxyAddr; + } + + @Override SSLTube getConnectionFlow() { return flow; }