Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DisniRdmaConnection (0.17 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

     *
     * Note: This is a skeleton implementation. A real implementation would
     * require proper DiSNI integration with actual RDMA hardware.
     */
    public class DisniRdmaConnection extends RdmaConnection {
    
        private static final Logger log = LoggerFactory.getLogger(DisniRdmaConnection.class);
    
        // DiSNI objects - would be actual DiSNI types in real implementation
        private final Object endpoint; // RdmaActiveEndpoint
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. docs/smb3-features/05-rdma-smb-direct-design.md

                }
            }
            initialized = false;
        }
    }
    
    class DisniRdmaConnection extends RdmaConnection {
        private final RdmaActiveEndpoint endpoint;
        private final RdmaActiveEndpointGroup<DisniRdmaEndpoint> group;
        
        public DisniRdmaConnection(InetSocketAddress remote, InetSocketAddress local,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java

        }
    
        @Override
        public RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException {
            ensureInitialized();
            return new DisniRdmaConnection(remote, local, endpointGroup);
        }
    
        @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
    - 5.2K bytes
    - Viewed (0)
Back to top