Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SMB2_GLOBAL_CAP_MULTI_CHANNEL (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/Smb2Constants.java

         */
        public static final int SMB2_GLOBAL_CAP_LARGE_MTU = 0x4;
    
        /**
         * Server supports multi-channel connections
         */
        public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x8;
    
        /**
         * Server supports persistent handles
         */
        public static final int SMB2_GLOBAL_CAP_PERSISTENT_HANDLES = 0x10;
    
        /**
         * Server supports directory leasing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/Smb2ChannelCapabilities.java

     */
    public final class Smb2ChannelCapabilities {
    
        private Smb2ChannelCapabilities() {
        }
    
        /**
         * Multi-channel specific capability flag
         */
        public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x00000008;
    
        /**
         * Channel binding is disabled
         */
        public static final int CHANNEL_BINDING_DISABLED = 0;
    
        /**
         * Channel binding is preferred but not required
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top