- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for NtTransQuerySecurityDescResponse (0.18 seconds)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
*/ public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { private SecurityDescriptor securityDescriptor; /** * Constructs an NT transaction query security descriptor response. * @param config the configuration context for this response */ public NtTransQuerySecurityDescResponse(final Configuration config) { super(config); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java
*/ package jcifs.smb1.smb1; import java.io.IOException; class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { SecurityDescriptor securityDescriptor; NtTransQuerySecurityDescResponse() { } @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtTransQuerySecurityDescTest.java
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
/** * Unit tests for NtTransQuerySecurityDescResponse class */ class NtTransQuerySecurityDescResponseTest { @Mock private Configuration mockConfig; private NtTransQuerySecurityDescResponse response; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); response = new NtTransQuerySecurityDescResponse(mockConfig); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
Shinsuke Sugaya <******@****.***> 1755307968 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
Shinsuke Sugaya <******@****.***> 1755155678 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* NtTrans Query Security Desc Request / Response */ final NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc(f, 0x04); final NtTransQuerySecurityDescResponse response = new NtTransQuerySecurityDescResponse(); try { send(request, response); aces = response.securityDescriptor.aces; if (aces != null) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java
Shinsuke Sugaya <******@****.***> 1755307968 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
if (!th.hasCapability(SmbConstants.CAP_NT_SMBS)) { throw new SmbUnsupportedOperationException("Not supported without CAP_NT_SMBS/SMB2"); } NtTransQuerySecurityDescResponse response = new NtTransQuerySecurityDescResponse(getContext().getConfig()); try (SmbFileHandleImpl f = openUnshared(O_RDONLY, READ_CONTROL, DEFAULT_SHARING, 0, isDirectory() ? 1 : 0)) { /*Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)