Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createConnection (0.78 sec)

  1. 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");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. 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
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top