- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for maxBufferSize (0.26 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
this.maxMpxCount = 1; } this.snd_buf_size = Math.min(this.snd_buf_size, this.server.maxBufferSize); this.recv_buf_size = Math.min(this.recv_buf_size, this.server.maxBufferSize); this.tx_buf_size = Math.min(this.tx_buf_size, this.server.maxBufferSize); this.capabilities &= this.server.scapabilities;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
serverData.maxBufferSize = Integer.MAX_VALUE; serverData.sessKey = Integer.MAX_VALUE; serverData.scapabilities = Integer.MAX_VALUE; assertEquals(Integer.MAX_VALUE, serverData.sflags2); assertEquals(Integer.MAX_VALUE, serverData.smaxMpxCount); assertEquals(Integer.MAX_VALUE, serverData.maxBufferSize); assertEquals(Integer.MAX_VALUE, serverData.sessKey);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
} /** * Sets the maximum buffer size for this transaction * @param maxBufferSize * the maxBufferSize to set */ public final void setMaxBufferSize(final int maxBufferSize) { this.maxBufferSize = maxBufferSize; } /** * Sets the maximum data count for this transaction * @param maxDataCount
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
int maxParameterCount; int maxDataCount = DEFAULT_MAX_DATA_COUNT; byte maxSetupCount; int timeout = 0; int setupCount = 1; byte subCommand; String name = ""; int maxBufferSize; // set in SmbTransport.sendTransaction() before nextElement called byte[] txn_buf; SmbComTransaction() { maxParameterCount = 1024; primarySetupOffset = PRIMARY_SETUP_OFFSET;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
return false; } final int maxBufferSize = tc.getConfig().getTransactionBufferSize(); this.maxReadSize = Math.min(maxBufferSize - Smb2ReadResponse.OVERHEAD, Math.min(tc.getConfig().getReceiveBufferSize(), this.maxReadSize)) & ~0x7; this.maxWriteSize =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
} @Test @DisplayName("Test setMaxBufferSize") void testSetMaxBufferSize() { transaction.setMaxBufferSize(8192); assertEquals(8192, transaction.maxBufferSize); } @Test @DisplayName("Test setMaxDataCount") void testSetMaxDataCount() { transaction.setMaxDataCount(4096); assertEquals(4096, transaction.maxDataCount); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
CONNECTIONS.add(0, conn); } return conn; } class ServerData { byte flags; int flags2; int maxMpxCount; int maxBufferSize; int sessionKey; int capabilities; String oemDomainName; int securityMode; int security; boolean encryptedPasswords; boolean signaturesEnabled;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0)