Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TcpRdmaConnection (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java

     *
     * Uses regular TCP sockets to simulate RDMA operations.
     * This provides a fallback when real RDMA hardware is not available.
     */
    public class TcpRdmaConnection extends RdmaConnection {
    
        private static final Logger log = LoggerFactory.getLogger(TcpRdmaConnection.class);
    
        private SocketChannel socketChannel;
        private Socket socket;
    
        /**
         * Create new TCP RDMA connection
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProvider.java

            return EnumSet.of(RdmaCapability.RDMA_SEND_RECEIVE);
        }
    
        @Override
        public RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException {
            return new TcpRdmaConnection(remote, local);
        }
    
        @Override
        public RdmaConnection connect(String hostname, int port) throws IOException {
            InetSocketAddress remoteAddress = new InetSocketAddress(hostname, port);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        }
        
        @Override
        public RdmaConnection createConnection(InetSocketAddress remote, 
                                              InetSocketAddress local) throws IOException {
            return new TcpRdmaConnection(remote, local);
        }
        
        @Override
        public RdmaMemoryRegion registerMemory(ByteBuffer buffer, 
                                              EnumSet<RdmaAccess> access) throws IOException {
    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