- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 247 for flags2 (0.07 sec)
-
src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java
assertEquals(smb.flags, readSmb.flags); assertEquals(smb.flags2, readSmb.flags2); assertEquals(smb.tid, readSmb.tid); assertEquals(smb.pid, readSmb.pid); assertEquals(smb.uid, readSmb.uid); assertEquals(smb.mid, readSmb.mid); } @Test void testIsResponse() { smb.flags = (byte) ServerMessageBlock.FLAGS_RESPONSE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int FLAGS_OPLOCK_REQUESTED_OR_GRANTED = 0x20; /** Notify of modify action flag */ int FLAGS_NOTIFY_OF_MODIFY_ACTION = 0x40; /** Response flag */ int FLAGS_RESPONSE = 0x80; /** No flags2 set */ int FLAGS2_NONE = 0x0000; /** Long filenames supported flag */ int FLAGS2_LONG_FILENAMES = 0x0001; /** Extended attributes supported flag */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
} @Test @DisplayName("Test flags property") void testFlagsProperty() { testBlock.setFlags((byte) 0x12); assertEquals((byte) 0x12, testBlock.getFlags()); } @Test @DisplayName("Test flags2 property") void testFlags2Property() { testBlock.setFlags2(0x1234);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} } void send(final ServerMessageBlock request, final ServerMessageBlock response) throws SmbException { connect(); /* must negotiate before we can test flags2, useUnicode, etc */ request.flags2 |= flags2; request.useUnicode = useUnicode; request.response = response; /* needed by sign */ if (request.digest == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
final String str = errorCode == 0 ? "0" : SmbException.getMessageByCode(errorCode); return "command=" + c + ",received=" + received + ",errorCode=" + str + ",flags=0x" + Hexdump.toHexString(flags & 0xFF, 4) + ",flags2=0x" + Hexdump.toHexString(flags2, 4) + ",signSeq=" + signSeq + ",tid=" + tid + ",pid=" + pid + ",uid=" + uid + ",mid=" + mid + ",wordCount=" + wordCount + ",byteCount=" + byteCount; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
*/ @Override public int getSendBufferSize() { return this.snd_buf_size; } /** * Gets the negotiated flags2 value. * * @return negotiated flags2 */ public int getNegotiatedFlags2() { return this.negotiatedFlags2; } /** * {@inheritDoc} *
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/main/java/jcifs/config/BaseConfiguration.java
protected boolean disablePlainTextPasswords = true; /** OEM encoding for non-Unicode operations */ protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING; /** SMB flags2 field value */ protected int flags2 = 0; /** SMB client capabilities */ protected int capabilities = 0; /** Maximum number of concurrent SMB sessions */ protected int sessionLimit = SmbConstants.DEFAULT_SSN_LIMIT;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
private void setNegotiatedFlags2(SmbComNegotiateResponse response, int flags2) { try { Field field = response.getClass().getDeclaredField("negotiatedFlags2"); field.setAccessible(true); field.set(response, flags2); } catch (Exception e) { throw new RuntimeException("Failed to set negotiatedFlags2 field", e); }
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/config/BaseConfigurationTest.java
} @Test @DisplayName("Test initDefaults with pre-set flags2 and capabilities") void testInitDefaultsWithPresetFlags() throws CIFSException { BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.flags2 = 0x1234; testConfig.capabilities = 0x5678; testConfig.initDefaults();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0)