- Sort Score
- Result 10 results
- Languages All
Results 11 - 12 of 12 for getSendBufferSize (0.2 sec)
-
src/main/java/jcifs/Configuration.java
int getReceiveBufferSize (); /** * * Property <tt>jcifs.smb.client.snd_buf_size</tt> (int, default 65535) * * @return send buffer size, in bytes */ int getSendBufferSize (); /** * * Property <tt>jcifs.smb.client.soTimeout</tt> (int, default 35000) * * @return socket timeout, in milliseconds */ int getSoTimeout ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
w.setDaemon(true); try { w.start(); // use commonly acceptable buffer size int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70); byte[][] b = new byte[2][bsize]; copyRecursive(dest, b, bsize, w, sh, dh); } finally { w.write(null, -1, null);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)