- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NT_TRANSACT_NOTIFY_CHANGE (0.08 sec)
-
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) -
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)