- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getConnTimeout (0.11 sec)
-
src/test/java/jcifs/tests/TimeoutTest.java
"Timeout %d outside expected range (%f)", timeout, 1.5 * ( ctx.getConfig().getConnTimeout() + ctx.getConfig().getResponseTimeout() )), timeout < 1.5 * ( ctx.getConfig().getConnTimeout() + ctx.getConfig().getResponseTimeout() )); Set<Thread> threadsAfter = new HashSet<>(Thread.getAllStackTraces().keySet());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getResponseTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getConnTimeout() */ @Override public int getConnTimeout () { return this.delegate.getConnTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getSessionTimeout() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.smbLocalAddress; } @Override public int getLocalPort () { return this.smbLocalPort; } @Override public int getConnTimeout () { return this.smbConnectionTimeout; } @Override public int getResponseTimeout () { return this.smbResponseTimeout; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort)); this.socket.connect(new InetSocketAddress(this.address.getHostAddress(), 139), tc.getConfig().getConnTimeout()); this.socket.setSoTimeout(tc.getConfig().getSoTimeout()); this.out = this.socket.getOutputStream(); this.in = this.socket.getInputStream();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property <tt>jcifs.smb.client.connTimeout</tt> (int, default 35000) * * @return timeout for establishing a socket connection, in milliseconds */ int getConnTimeout (); /** * Property <tt>jcifs.smb.client.sessionTimeout</tt> (int, default 35000) * * * @return timeout for SMB sessions, in milliseconds */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)