- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getConnTimeout (0.08 sec)
-
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)