Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NtTransQuerySecurityDescResponse (0.35 sec)

  1. 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;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. 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);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. 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);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. 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) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. 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)) {
                /*
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top