Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. docs/smb3-features/05-rdma-smb-direct-design.md

            sendRegion.getBuffer().flip();
            
            try {
                // Send via RDMA
                rdmaConnection.send(sendRegion.getBuffer(), sendRegion);
                rdmaConnection.consumeSendCredit();
                
                // Receive response
                ByteBuffer responseBuffer = rdmaConnection.receive(getResponseTimeout());
                
                // Parse response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

         * @param error the error that occurred
         * @return true if error was handled and connection recovered, false if fallback needed
         */
        public boolean handleRdmaError(RdmaConnection connection, Exception error) {
            log.warn("RDMA error occurred: {}", error.getMessage());
            statistics.recordError();
    
            if (isRecoverableError(error)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

            try (RdmaConnection connection = provider.createConnection(mockAddress, null)) {
                assertNotNull(connection, "Connection should not be null");
                assertEquals(mockAddress, connection.getRemoteAddress(), "Remote address should match");
    
                // Test connection state transitions
                RdmaConnection.RdmaConnectionState initialState = connection.getState();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

    import java.io.IOException;
    import java.net.InetSocketAddress;
    import java.nio.ByteBuffer;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.internal.smb2.rdma.RdmaConnection;
    import jcifs.internal.smb2.rdma.RdmaMemoryRegion;
    import jcifs.internal.smb2.rdma.RdmaNegotiateRequest;
    import jcifs.internal.smb2.rdma.RdmaNegotiateResponse;
    
    /**
     * DiSNI RDMA connection implementation.
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top