Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NT_TRANSACT_NOTIFY_CHANGE (0.1 sec)

  1. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

            assertNotNull(transaction);
        }
    
        @Test
        @DisplayName("Test constructor initialization with NT_TRANSACT_NOTIFY_CHANGE")
        void testConstructorWithNotifyChange() {
            TestSmbComNtTransaction notifyTransaction = new TestSmbComNtTransaction(mockConfig, SmbComNtTransaction.NT_TRANSACT_NOTIFY_CHANGE);
    
            assertEquals(ServerMessageBlock.SMB_COM_NT_TRANSACT, notifyTransaction.getCommand());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

        /**
         * 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;
    
        private final int function;
    
        /**
         * Constructs an NT transaction command.
         *
         * @param config the configuration
         * @param function the NT transaction function code
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java

         */
        public NtTransNotifyChange(final Configuration config, final int fid, final int completionFilter, final boolean watchTree) {
            super(config, NT_TRANSACT_NOTIFY_CHANGE);
            this.fid = fid;
            this.completionFilter = completionFilter;
            this.watchTree = watchTree;
            this.setupCount = 0x04;
            this.totalDataCount = 0;
            this.maxDataCount = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top