Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getTimeoutFor100Ns (0.5 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

            return timeoutMs;
        }
    
        /**
         * Get the timeout value in 100-nanosecond intervals as required by MS-SMB2
         * @return the timeout in 100-nanosecond intervals
         */
        public long getTimeoutFor100Ns() {
            if (timeoutMs == 0) {
                return 0L; // Persistent handles use 0
            }
            // Convert milliseconds to 100-nanosecond intervals
            // 1 ms = 10,000 * 100ns intervals
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top