Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SmbComNtTransactionResponse (0.11 sec)

  1. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

     */
    public abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse {
    
        private static final Logger log = LoggerFactory.getLogger(SmbComNtTransactionResponse.class);
    
        /**
         * Constructs an NT transaction response.
         * @param config the configuration context for this response
         */
        protected SmbComNtTransactionResponse(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.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import jcifs.smb1.util.LogStream;
    
    abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse {
    
        SmbComNtTransactionResponse() {
        }
    
        @Override
        int readParameterWordsWireFormat(final byte[] buffer, int bufferIndex) {
            final int start = bufferIndex;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Test class for SmbComNtTransactionResponse
     */
    @DisplayName("SmbComNtTransactionResponse Tests")
    class SmbComNtTransactionResponseTest {
    
        @Mock
        private Configuration mockConfig;
    
        private TestSmbComNtTransactionResponse response;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    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;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

     *
     * This response contains file system change notifications that occurred
     * in the monitored directory, such as file creation, modification, or deletion.
     */
    public class NtTransNotifyChangeResponse extends SmbComNtTransactionResponse implements NotifyResponse {
    
        private final List<FileNotifyInformation> notifyInformation = new ArrayList<>();
    
        /**
         * Constructs an NT transaction notify change response.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java

     *
     * This response contains the Windows security descriptor retrieved
     * from the server, including access control information.
     */
    public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse {
    
        private SecurityDescriptor securityDescriptor;
    
        /**
         * Constructs an NT transaction query security descriptor response.
         * @param config the configuration context for this response
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java

        private TestableSmbComNtTransactionResponse response;
    
        // A concrete implementation of the abstract class for testing purposes.
        private static class TestableSmbComNtTransactionResponse extends SmbComNtTransactionResponse {
            @Override
            int writeSetupWireFormat(byte[] dst, int dstIndex) {
                return 0;
            }
    
            @Override
            int writeParametersWireFormat(byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top