Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SMB2_GLOBAL_CAP_MULTI_CHANNEL (0.21 sec)

  1. src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java

            }
    
            @Test
            @DisplayName("Multi-channel capability should be 0x8")
            void testGlobalCapMultiChannel() {
                assertEquals(0x8, Smb2Constants.SMB2_GLOBAL_CAP_MULTI_CHANNEL, "Multi-channel capability must be 0x8");
            }
    
            @Test
            @DisplayName("Persistent handles capability should be 0x10")
            void testGlobalCapPersistentHandles() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            // Check if both client and server support multi-channel
            if (!context.getConfig().isUseMultiChannel()) {
                return false;
            }
    
            // MS-SMB2: Check if server advertised SMB2_GLOBAL_CAP_MULTI_CHANNEL (0x00000008)
            // This capability should be checked from the negotiate response
            // The server capabilities are typically stored in the session or transport
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  5. docs/smb3-features/03-multi-channel-design.md

            this.value = value;
        }
    }
    ```
    
    ### 3.2 Channel Capabilities
    ```java
    public class Smb2ChannelCapabilities {
        // Multi-channel specific capabilities
        public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x00000008;
        
        // Channel binding policies
        public static final int CHANNEL_BINDING_DISABLED = 0;
        public static final int CHANNEL_BINDING_PREFERRED = 1;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/MultiChannelManager.java

                transport.ensureConnected();
    
                // Verify multi-channel capability (SMB3+ required)
                if (!transport.isSMB2() || !transport.hasCapability(0x00000008)) { // SMB2_GLOBAL_CAP_MULTI_CHANNEL
                    throw new CIFSException("Server does not support SMB multi-channel capability");
                }
    
                log.info("Created multi-channel transport: {} -> {}", localAddress, serverAddress);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top