- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for NT_TRANSACT_QUERY_SECURITY_DESC (2.21 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
*/ public NtTransQuerySecurityDesc(final Configuration config, final int fid, final int securityInformation) { super(config, NT_TRANSACT_QUERY_SECURITY_DESC); this.fid = fid; this.securityInformation = securityInformation; this.setupCount = 0; this.totalDataCount = 0; this.maxParameterCount = 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
when(mockConfig.getTransactionBufferSize()).thenReturn(65535); transaction = new TestSmbComNtTransaction(mockConfig, SmbComNtTransaction.NT_TRANSACT_QUERY_SECURITY_DESC); } @Test @DisplayName("Test constructor initialization with NT_TRANSACT_QUERY_SECURITY_DESC") void testConstructorInitialization() { // Verify that the transaction is properly initialized
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java
// relative to headerStart private static final int NTT_PRIMARY_SETUP_OFFSET = 69; private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51; static final int NT_TRANSACT_QUERY_SECURITY_DESC = 6; int function; SmbComNtTransaction() { primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET; secondaryParameterOffset = NTT_SECONDARY_PARAMETER_OFFSET; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
NtTransQuerySecurityDesc(final int fid, final int securityInformation) { this.fid = fid; this.securityInformation = securityInformation; command = SMB_COM_NT_TRANSACT; function = NT_TRANSACT_QUERY_SECURITY_DESC; setupCount = 0; totalDataCount = 0; maxParameterCount = 4; maxDataCount = 32768; maxSetupCount = (byte) 0x00; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
/** * NT transaction function code for querying security descriptors. * Used to retrieve security information about a file or directory. */ public static final int NT_TRANSACT_QUERY_SECURITY_DESC = 0x6; /** * NT transaction function code for change notification. * Used to monitor changes to a directory or file. */ public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
// Test the writeParameterWordsWireFormat for a primary transaction. smbComNtTransaction.command = ServerMessageBlock.SMB_COM_NT_TRANSACT; smbComNtTransaction.function = SmbComNtTransaction.NT_TRANSACT_QUERY_SECURITY_DESC; smbComNtTransaction.maxSetupCount = 1; smbComNtTransaction.totalParameterCount = 10; smbComNtTransaction.totalDataCount = 20; smbComNtTransaction.maxParameterCount = 30;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0)