InputStream
PlainSocketImpl
114115116117118119120121122
public ServerSocket() throws IOException { if (factory != null) impl = factory.createSocketImpl(); else impl = new PlainSocketImpl(); impl.create(true); }
115116117118119120121
public Socket() { if (factory != null) impl = factory.createSocketImpl(); else impl = new PlainSocketImpl(); }
138139140141142143144145146
* @since 1.1 */ protected Socket(SocketImpl impl) throws SocketException { if (impl == null) this.impl = new PlainSocketImpl(); else this.impl = impl; }