Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DURABLE_V1 (0.04 sec)

  1. src/test/java/jcifs/tests/persistent/DurableHandleContextTest.java

            assertEquals(0, HandleType.NONE.getValue());
            assertEquals(1, HandleType.DURABLE_V1.getValue());
            assertEquals(2, HandleType.DURABLE_V2.getValue());
            assertEquals(3, HandleType.PERSISTENT.getValue());
    
            assertEquals(HandleType.NONE, HandleType.fromValue(0));
            assertEquals(HandleType.DURABLE_V1, HandleType.fromValue(1));
            assertEquals(HandleType.DURABLE_V2, HandleType.fromValue(2));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/HandleType.java

     */
    public enum HandleType {
        /**
         * No durability - standard handle
         */
        NONE(0),
    
        /**
         * SMB 2.1 durable handle - survives network loss
         */
        DURABLE_V1(1),
    
        /**
         * SMB 3.0 durable handle V2 - with timeout configuration
         */
        DURABLE_V2(2),
    
        /**
         * SMB 3.0 persistent handle - survives server reboot
         */
        PERSISTENT(3);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

         */
        private final HandleGuid createGuid;
    
        /**
         * The 16-byte file ID returned by the server for this handle
         */
        private final byte[] fileId;
    
        /**
         * The type of handle (DURABLE_V1, DURABLE_V2, or PERSISTENT)
         */
        private final HandleType type;
    
        /**
         * The timeout in milliseconds for durable handles (not applicable for persistent handles)
         */
        private final long timeout;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top