Online Java Compiler By
JavaTpoint.com
import java.io.IOException; import java.net.*; public class JavaSocketGet00BInlineExample1 { 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.set00BInline(on); //getOOBInline() method returns a boolean value true if SO_OOBINLINE option is enabled else it returns false System.out.println("S0_00BINLINE is enabled: "+socket.get00BInline()); } }
Output