- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNetbiosSoTimeout (0.38 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getNetbiosScope(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosSoTimeout() */ @Override public int getNetbiosSoTimeout () { return this.delegate.getNetbiosSoTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosSndBufSize() */ @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/netbios/NameServiceClientImpl.java
} void ensureOpen ( int timeout ) throws IOException { this.closeTimeout = 0; if ( this.transportContext.getConfig().getNetbiosSoTimeout() != 0 ) { this.closeTimeout = Math.max(this.transportContext.getConfig().getNetbiosSoTimeout(), timeout); } // If socket is still good, the new closeTimeout will // be ignored; see tryClose comment.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} @Override public InetAddress getNetbiosLocalAddress () { return this.netbiosLocalAddress; } @Override public int getNetbiosSoTimeout () { return this.netbiosSocketTimeout; } @Override public String getNetbiosScope () { return this.netbiosScope; } @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/Configuration.java
/** * * * Property <tt>jcifs.netbios.soTimeout</tt> (int, default 5000) * * @return socket timeout for netbios connections, in milliseconds */ int getNetbiosSoTimeout (); /** * * * @return virtual circuit number to use */ int getVcNumber (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)