Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/net/Socket/RST.java
38812 views
/*1* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/*24* @bug 446899725* @summary SO_LINGER is ignored on Windows with Winsock 226*/27import java.net.*;28import java.io.*;2930public class RST implements Runnable {3132Socket client;3334public void run() {35try {36client.setSoLinger(true, 0); // hard reset37client.close();38} catch (Exception e) {39e.printStackTrace();40}41}4243RST() throws Exception {44ServerSocket ss = new ServerSocket(0);45client = new Socket("localhost", ss.getLocalPort());46Socket server = ss.accept();4748Thread thr = new Thread(this);49thr.start();5051SocketException exc = null;52try {53InputStream in = server.getInputStream();5455/*56* This read should throw a SocketException indicating a57* connection reset.58*/59int n = in.read();60} catch (SocketException se) {61exc = se;62}6364server.close();65ss.close();6667if (exc == null) {68throw new Exception("Expected SocketException not thrown");69}70if (exc.getMessage().toLowerCase().indexOf("reset") == -1) {71throw new Exception("SocketException thrown but not expected \"connection reset\"");72}73}747576public static void main(String args[]) throws Exception {77new RST();78}79}808182