- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for getTransactionBufferSize (0.2 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
return DialectVersion.SMB1; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getTransactionBufferSize() */ @Override public int getTransactionBufferSize () { return this.tx_buf_size; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getInitialCredits()
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/config/DelegatingConfiguration.java
return this.delegate.getNetbiosCachePolicy(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getTransactionBufferSize() */ @Override public int getTransactionBufferSize () { return this.delegate.getTransactionBufferSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getBufferCacheSize() */
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.maxTransactSize; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getTransactionBufferSize() */ @Override public int getTransactionBufferSize () { return getMaxTransactSize(); } /** * @return the negotiateContexts */
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/internal/SmbNegotiationResponse.java
/** * @return the receive buffer size */ int getReceiveBufferSize (); /** * * @return the transaction buffer size */ int getTransactionBufferSize (); /** * * @return number of initial credits the server grants */ int getInitialCredits (); /** * @param tc * @param forceSigning
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/internal/smb2/ioctl/Smb2IoctlRequest.java
super(config, SMB2_IOCTL); this.controlCode = controlCode; this.fileId = fileId; this.maxOutputResponse = config.getTransactionBufferSize() & ~0x7; this.outputBuffer = null; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.RequestWithFileId#setFileId(byte[]) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:13:17 UTC 2018 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
try ( SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport() ) { return transport.getNegotiateResponse().getTransactionBufferSize(); } } @Override public boolean areSignaturesActive () throws SmbException { try ( SmbSessionImpl session = this.treeConnection.getSession();
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/smb1/trans/SmbComTransaction.java
protected SmbComTransaction ( Configuration config, byte command, byte subCommand ) { super(config, command); this.subCommand = subCommand; this.maxDataCount = config.getTransactionBufferSize() - 512; this.maxParameterCount = 1024; this.primarySetupOffset = PRIMARY_SETUP_OFFSET; this.secondaryParameterOffset = SECONDARY_PARAMETER_OFFSET; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} @Override public boolean isForceExtendedSecurity () { return this.forceExtendedSecurity; } @Override public int getTransactionBufferSize () { return this.transactionBufferSize; } @Override public int getMaximumBufferSize () { return this.maximumBufferSize; } @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.smb.client.transaction_buf_size</tt> (int, default 65535) * * @return maximum data size for SMB transactions */ int getTransactionBufferSize (); /** * * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16) * * @return number of buffers to keep in cache */ int getBufferCacheSize ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)