- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for createConnection (0.07 seconds)
-
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProvider.java
// TCP fallback only supports send/receive return EnumSet.of(RdmaCapability.RDMA_SEND_RECEIVE); } @Override public RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException { return new TcpRdmaConnection(remote, local); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 2.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java
} } @Override public Set<RdmaCapability> getSupportedCapabilities() { return EnumSet.allOf(RdmaCapability.class); } @Override public RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException { ensureInitialized(); return new DisniRdmaConnection(remote, local, endpointGroup); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
* @param local local socket address, may be null for auto-binding * @return new RDMA connection instance * @throws IOException if connection creation fails */ RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException; /** * Connect to a remote RDMA endpoint * * @param hostname remote hostname or IP addressCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 3K bytes - Click Count (0) -
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) -
src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java
public void testCreateConnection() throws Exception { InetSocketAddress remote = new InetSocketAddress("localhost", 445); InetSocketAddress local = null; RdmaConnection connection = provider.createConnection(remote, local); assertNotNull(connection, "Connection should not be null"); assertEquals(remote, connection.getRemoteAddress(), "Remote address should match"); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4.2K bytes - Click Count (0)