- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for isUsableForChannel (0.23 seconds)
-
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
return rdmaCapable; } /** * Check if this interface is usable for multi-channel * * @return true if usable */ public boolean isUsableForChannel() { return address != null && !address.isLoopbackAddress() && !address.isLinkLocalAddress(); } /** * Get a score for interface selection (higher is better) *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 9.8K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
this.rssCapable = checkRSSCapability(); if (rssCapable) { this.capability |= NETWORK_INTERFACE_CAP_RSS; } } public boolean isUsableForChannel() { return address != null && !address.isLoopbackAddress() && !address.isLinkLocalAddress(); } public int getScore() { // Score interface for selection (higher is better)
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfoTest.java
void testIsUsableForChannel() { NetworkInterfaceInfo usable = new NetworkInterfaceInfo(testAddress, 1000); assertTrue(usable.isUsableForChannel()); NetworkInterfaceInfo loopback = new NetworkInterfaceInfo(loopbackAddress, 1000); assertFalse(loopback.isUsableForChannel()); } @Test void testGetScore() { NetworkInterfaceInfo basic = new NetworkInterfaceInfo(testAddress, 1000);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 4.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 20K bytes - Click Count (0)