- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for interfaceIndex (0.14 seconds)
-
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
* * @return interface index */ public int getInterfaceIndex() { return interfaceIndex; } /** * Set the interface index * * @param interfaceIndex interface index */ public void setInterfaceIndex(int interfaceIndex) { this.interfaceIndex = interfaceIndex; } /** * Get interface capabilities * * @return capability flagsCreated: 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
public byte[] encode() { // Encode for FSCTL_QUERY_NETWORK_INTERFACE_INFO response byte[] buffer = new byte[152]; // Fixed size structure // InterfaceIndex (4 bytes) writeInt4(buffer, 0, interfaceIndex); // Capability (4 bytes) writeInt4(buffer, 4, capability); // Reserved (4 bytes) writeInt4(buffer, 8, 0);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) -
android/guava/src/com/google/common/net/InetAddresses.java
Inet6Address v6Address = (Inet6Address) address; int interfaceIndex = tryParseDecimal(scope, 0, scope.length()); if (interfaceIndex != -1) { return Inet6Address.getByAddress( v6Address.getHostAddress(), v6Address.getAddress(), interfaceIndex); } try { NetworkInterface asInterface = NetworkInterface.getByName(scope);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 47.7K bytes - Click Count (0)