- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for setSoTimeout (0.07 sec)
-
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} socket.setSoTimeout( SO_TIMEOUT ); */ socket = new Socket(); if (localAddr != null) { socket.bind(new InetSocketAddress(localAddr, localPort)); } socket.connect(new InetSocketAddress(address.getHostAddress(), 139), CONN_TIMEOUT); socket.setSoTimeout(SO_TIMEOUT);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
this.connectionTimeout = connectionTimeout; } /** * Sets the socket timeout. * @param soTimeout The socket timeout in milliseconds. */ public void setSoTimeout(final Integer soTimeout) { this.soTimeout = soTimeout; } /** * Sets the map of authentication scheme providers.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
final SessionServicePacket ssp0 = new SessionRequestPacket(calledName, NbtAddress.localhost.hostName); out.write(buffer, 0, ssp0.writeWireFormat(buffer, 0)); setSoTimeout(soTimeout); type = SessionServicePacket.readPacketType(in, buffer, 0); } catch (final IOException ioe) { close(); throw ioe; } switch (type) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
if (state != RdmaConnectionState.ESTABLISHED && state != RdmaConnectionState.CONNECTED) { throw new IOException("Connection not established"); } try { socket.setSoTimeout(timeout); // First, read the header to determine message size ByteBuffer headerBuffer = ByteBuffer.allocate(4); while (headerBuffer.hasRemaining()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
*/ try { this.socket.setSoTimeout(this.transportContext.getConfig().getConnTimeout()); if (peekKey() == null) { /* try to read header */ throw new IOException("transport closed in negotiate"); } } finally { this.socket.setSoTimeout(this.transportContext.getConfig().getSoTimeout()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
try { while (this.thread == Thread.currentThread()) { this.in.setLength(this.transportContext.getConfig().getNetbiosRcvBufSize()); this.socket.setSoTimeout(this.closeTimeout); this.socket.receive(this.in); log.trace("NetBIOS: new data read from socket");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} /** * Sets the socket timeout in milliseconds. * * @param soTimeout The socket timeout */ public void setSoTimeout(final Integer soTimeout) { this.soTimeout = soTimeout; } /** * Sets the cookie specification to use. * * @param cookieSpec The cookie specification */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0)