- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for remoteAddress (0.33 sec)
-
docs/smb3-features/05-rdma-smb-direct-design.md
long remoteAddress, int remoteKey, int length) throws IOException; /** * Perform RDMA write operation */ public abstract void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
* * @param localRegion local memory region to read into * @param remoteAddress remote memory address * @param remoteKey remote memory key * @param length number of bytes to read * @throws IOException if read fails */ public abstract void rdmaRead(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException; /** * Perform RDMA write operation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
try { // In real implementation, this would establish the RDMA connection: // endpoint.connect(remoteAddress, 1000); // 1 second timeout state = RdmaConnectionState.CONNECTED; log.debug("DiSNI RDMA connection established to {}", remoteAddress); } catch (Exception e) { state = RdmaConnectionState.ERROR;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt
@Test fun testOkHttpProxied() { testRequest { it.withProxyConfiguration(ProxyConfiguration.proxyConfiguration(ProxyConfiguration.Type.HTTP, it.remoteAddress())) val client = OkHttpClient .Builder() .proxy(Proxy(Proxy.Type.HTTP, it.remoteAddress())) .build() val response = client .newCall(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6.2K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
* * @param buffer the buffer to read into * @param remoteAddress remote memory address * @param remoteKey remote access key * @param length number of bytes to read * @return number of bytes read * @throws IOException if operation fails */ public int rdmaRead(ByteBuffer buffer, long remoteAddress, int remoteKey, int length) throws IOException { if (!isRdmaConnected()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
} socketChannel.connect(remoteAddress); socket = socketChannel.socket(); socket.setTcpNoDelay(true); socket.setKeepAlive(true); state = RdmaConnectionState.CONNECTED; log.debug("TCP RDMA connection established to {}", remoteAddress); } catch (IOException e) { state = RdmaConnectionState.ERROR;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
String maskedAddress = maskSensitiveData ? maskIpAddress(remoteAddress) : remoteAddress; Map<String, Object> context = getContextMap(); context.put("username", maskedUsername); context.put("remoteAddress", maskedAddress); context.put("authMethod", authMethod); context.put("success", success);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportTest.java
void testGetRemoteAddress() { // Arrange when(smbTransport.getRemoteAddress()).thenReturn(remoteAddress); // Act Address result = smbTransport.getRemoteAddress(); // Assert assertNotNull(result, "Remote address should not be null"); assertEquals(remoteAddress, result, "Returned remote address should be the mocked address");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProvider.java
} @Override public RdmaConnection connect(String hostname, int port) throws IOException { InetSocketAddress remoteAddress = new InetSocketAddress(hostname, port); RdmaConnection connection = createConnection(remoteAddress, null); connection.connect(); return connection; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
public ChannelInfo(String channelId, InetAddress localAddress, InetAddress remoteAddress, NetworkInterface networkInterface, SmbTransportImpl transport) { this.channelId = channelId; this.localAddress = localAddress; this.remoteAddress = remoteAddress; this.networkInterface = networkInterface; this.transport = transport; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0)