Online Java Compiler By
JavaTpoint.com
import java.io.IOException; import java.net.*; public class JavaSocketGet00BInlineExample2 { public static void main(String[] args) throws IOException { Socket socket = new Socket(); //getOOBInline() method returns a boolean value true if SO_OOBINLINE option is enabled else it returns false //default value is set false System.out.println("S0_00BINLINE is enabled: "+socket.get00BInline()); } }
Output