aboutsummaryrefslogtreecommitdiffstats
path: root/testing/openjdk12/Alpine_Bug_10126.java
blob: 76574a15098919704e01b7452a4e52d2975eddfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class Alpine_Bug_10126 {
    public static void main(String[] args) throws Exception {
        try (java.net.Socket sock = javax.net.ssl.SSLSocketFactory.getDefault().createSocket("bugs.alpinelinux.org", 443);
             java.io.InputStream in = sock.getInputStream();
             java.io.OutputStream out = sock.getOutputStream()) {
            out.write("GET / HTTP/1.0\n\nHost: gitlab.alpinelinux.org\n\nConnection: close\n\n\n\n".getBytes());
            out.flush();
            while (in.read(new byte[1024]) != -1) ;
        }
        System.out.println("Secured connection performed successfully");
    }
}