- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for getSendBufferSize (0.34 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
return this.recv_buf_size; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getSendBufferSize() */ @Override public int getSendBufferSize () { return this.snd_buf_size; } /** * @return negotiated flags2 */ public int getNegotiatedFlags2 () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
*/ boolean hasCapability ( int cap ) throws CIFSException; /** * @return the send buffer size of the underlying connection * @throws CIFSException */ int getSendBufferSize () throws CIFSException; /** * @return the receive buffer size of the underlying connection * @throws CIFSException */ int getReceiveBufferSize () throws CIFSException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getReceiveBufferSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getSendBufferSize() */ @Override public int getSendBufferSize () { return this.delegate.getSendBufferSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNotifyBufferSize() */ @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/internal/smb2/nego/Smb2NegotiateResponse.java
return this.maxReadSize; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getSendBufferSize() */ @Override public int getSendBufferSize () { return this.maxWriteSize; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#isSigningEnabled() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
} @Override public int getSendBufferSize () throws SmbException { try ( SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport() ) { return transport.getNegotiateResponse().getSendBufferSize(); } } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationResponse.java
/** * @param cap * @return whether capability is negotiated */ boolean haveCapabilitiy ( int cap ); /** * @return the send buffer size */ int getSendBufferSize (); /** * @return the receive buffer size */ int getReceiveBufferSize (); /** * * @return the transaction buffer size */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:14:04 UTC 2021 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
} try ( SmbFileHandle h = ensureOpen() ) {} this.readSize = th.getReceiveBufferSize() - 70; this.writeSize = th.getSendBufferSize() - 70; if ( th.hasCapability(SmbConstants.CAP_LARGE_READX) ) { this.largeReadX = true;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 12:01:33 UTC 2020 - 18.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} @Throws(SocketException::class) override fun getReceiveBufferSize(): Int { return delegate!!.receiveBufferSize } @Throws(SocketException::class) override fun getSendBufferSize(): Int { return delegate!!.sendBufferSize } @Throws(SocketException::class) override fun getSoTimeout(): Int { return delegate!!.soTimeout } @Throws(SocketException::class)
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
return this.smbSocketTimeout; } @Override public int getSessionTimeout () { return this.smbSessionTimeout; } @Override public int getSendBufferSize () { return this.smbSendBufferSize; } @Deprecated @Override public int getRecieveBufferSize () { return this.smbRecvBufferSize; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0)