Online Java Compiler By
JavaTpoint.com
import java.io.IOException; import java.net.*; public class JavaSocketSetOOBInlineExample1 { public static void main(String[] args) throws IOException { Socket socket = new Socket(); //enabling the SO_OOBINLINE option boolean on= true; //setOOBInline() method either enables or disables the SO_OOBINLINE option socket.setOOBInline(on); //getOOBInline() method returns a boolean value true if SO_OOBINLINE option is enabled else it returns false System.out.println("SO_OOBINLINE is enabled: "+socket.getOOBInline()); } }
Output