Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NIC (0.19 sec)

  1. src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java

            NetworkInterfaceInfo nic = new NetworkInterfaceInfo(address, 1);
    
            nic.setInterfaceIndex(1);
            nic.setCapability(Smb2ChannelCapabilities.NETWORK_INTERFACE_CAP_RSS);
            nic.setLinkSpeed(10000);
    
            // Verify properties
            assertEquals(1, nic.getInterfaceIndex());
            assertEquals(10000, nic.getLinkSpeed());
            assertTrue(nic.isRssCapable());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. docs/smb3-features/03-multi-channel-design.md

            || manager.getChannels().isEmpty());
    }
    ```
    
    ### 7.2 Integration Tests
    ```java
    @Test
    public void testMultiChannelThroughput() throws Exception {
        // Requires multi-NIC test environment
        CIFSContext context = getTestContext();
        context.getConfig().setProperty("jcifs.smb.client.useMultiChannel", "true");
        context.getConfig().setProperty("jcifs.smb.client.maxChannels", "4");
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top