- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for createConnection (0.09 seconds)
-
docs/smb3-features/05-rdma-smb-direct-design.md
/** * Get supported RDMA capabilities */ Set<RdmaCapability> getSupportedCapabilities(); /** * Create RDMA connection to remote endpoint */ RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException; /** * Register memory region for RDMA operations */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
// Use localhost for testing - should work with TCP fallback InetSocketAddress address = new InetSocketAddress("localhost", 12345); try (RdmaConnection connection = provider.createConnection(address, null)) { assertNotNull(connection, "Connection should not be null"); assertEquals(address, connection.getRemoteAddress(), "Remote address should match");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 13.8K bytes - Click Count (0)