Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for createConnection (0.06 sec)

  1. 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);
        }
    
        @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)
  2. 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);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. 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 address
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top