- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for TRANS2_SET_FILE_INFORMATION (1.09 sec)
-
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertEquals((short) 0x0007, SmbComTransaction.TRANS2_QUERY_FILE_INFORMATION); assertEquals((short) 0x0008, SmbComTransaction.TRANS2_SET_FILE_INFORMATION); assertEquals((short) 0x0010, SmbComTransaction.TRANS2_GET_DFS_REFERRAL); } @Test @DisplayName("Test encode and decode operations") void testEncodeDecodeOperations() {
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/internal/smb1/trans/SmbComTransaction.java
*/ public static final byte TRANS2_QUERY_FILE_INFORMATION = (byte) 0x07; /** * SMB TRANS2 subcommand for setting file information */ public static final byte TRANS2_SET_FILE_INFORMATION = (byte) 0x08; /** * Network share enumeration subcommand */ public static final byte NET_SHARE_ENUM = (byte) 0x00; /** * Network server enumeration subcommand version 2
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/smb/SmbFile.java
sh.send(closeReq); } } } else { if (replace) { // TRANS2_SET_FILE_INFORMATION does not seem to support the SMB1 RENAME_INFO throw new SmbUnsupportedOperationException("Replacing rename only supported with SMB2"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)