- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getReceiveBufferSize (0.16 sec)
-
src/main/java/jcifs/Configuration.java
* @return receive buffer size, in bytes * @deprecated use getReceiveBufferSize instead */ @Deprecated int getRecieveBufferSize (); /** * * Property <tt>jcifs.smb.client.rcv_buf_size</tt> (int, default 65535) * * @return receive buffer size, in bytes */ int getReceiveBufferSize (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
return delegate!!.port } @Throws(SocketException::class) override fun getSoLinger(): Int { return delegate!!.soLinger } @Throws(SocketException::class) override fun getReceiveBufferSize(): Int { return delegate!!.receiveBufferSize } @Throws(SocketException::class) override fun getSendBufferSize(): Int { return delegate!!.sendBufferSize }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} @Deprecated @Override public int getRecieveBufferSize () { return this.smbRecvBufferSize; } @Override public int getReceiveBufferSize () { return this.smbRecvBufferSize; } @Override public int getNotifyBufferSize () { return this.smbNotifyBufferSize; } @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
synchronized ( this.inLock ) { int size = Encdec.dec_uint16be(this.sbuf, 2) & 0xFFFF; if ( size < 33 || ( 4 + size ) > this.getContext().getConfig().getReceiveBufferSize() ) { /* log message? */ log.warn("Flusing stream input"); this.in.skip(this.in.available()); } else {
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/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 {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)