Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for SmbTransport (0.12 sec)

  1. docs/smb3-features/03-multi-channel-design.md

        }
    }
    ```
    
    ### 4.2 Channel Information
    ```java
    package jcifs.internal.smb2.multichannel;
    
    import jcifs.smb.SmbTransport;
    import java.util.concurrent.atomic.AtomicLong;
    
    public class ChannelInfo {
        private final String channelId;
        private final SmbTransport transport;
        private final NetworkInterfaceInfo localInterface;
        private final NetworkInterfaceInfo remoteInterface;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java

        @Mock
        private ChannelManager mockChannelManager;
    
        @Mock
        private ChannelLoadBalancer mockLoadBalancer;
    
        @Mock
        private SmbTransport mockTransport;
    
        @Mock
        private SmbTransport mockNewTransport;
    
        @Mock
        private CommonServerMessageBlock mockOperation;
    
        private ChannelFailover failover;
        private ChannelInfo failedChannel;
    
        @BeforeEach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

         * @return created transport
         * @throws IOException if transport creation fails
         */
        public SmbTransport createTransport(NetworkInterfaceInfo localInterface, NetworkInterfaceInfo remoteInterface) throws IOException {
            // This would need to be implemented based on the actual SmbTransport constructor
            // For now, return null - this needs integration with the actual transport creation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportInternal.java

    import jcifs.DfsReferralData;
    import jcifs.SmbSession;
    import jcifs.SmbTransport;
    
    /**
     * Internal interface for SMB transport operations.
     *
     * This interface provides internal methods for managing
     * SMB network transport and communication.
     *
     * @author mbechler
     */
    public interface SmbTransportInternal extends SmbTransport {
    
        /**
         * Checks if the transport supports the specified capability.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/multichannel/ChannelInfoTest.java

    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.SmbTransport;
    import jcifs.internal.CommonServerMessageBlock;
    
    /**
     * Unit tests for ChannelInfo
     */
    @ExtendWith(MockitoExtension.class)
    class ChannelInfoTest {
    
        @Mock
        private SmbTransport mockTransport;
    
        @Mock
        private CommonServerMessageBlock mockOperation;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  6. docs/smb3-features/05-rdma-smb-direct-design.md

            valid = false;
        }
    }
    ```
    
    ### 4.3 RDMA Transport
    ```java
    package jcifs.internal.smb2.rdma;
    
    import jcifs.smb.SmbTransport;
    import jcifs.internal.smb2.ServerMessageBlock2;
    
    public class RdmaTransport extends SmbTransport {
        private final RdmaConnection rdmaConnection;
        private final RdmaProvider provider;
        private final RdmaBufferManager bufferManager;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTree.java

                    service = service0;
    
                    /*
                     * Tree Connect And X Request / Response
                     */
    
                    if (LogStream.level >= 4) {
                        SmbTransport.log.println("treeConnect: unc=" + unc + ",service=" + service);
                    }
    
                    final SmbComTreeConnectAndXResponse response = new SmbComTreeConnectAndXResponse(andxResponse);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. docs/SMB3_IMPLEMENTATION_PLAN.md

    - [ ] Implement lease epoch tracking for v2 leases
    
    #### 1.3 Integration Points
    - Modify `Smb2CreateRequest` to include lease contexts
    - Update `SmbFile` caching logic to use leases
    - Add lease break handling in `SmbTransport`
    
    ---
    
    ### Phase 2: Persistent Handles
    **Priority: HIGH** | **Estimated Effort: 4-5 weeks**
    
    Persistent handles allow connections to survive network interruptions and server failovers.
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/DfsResolver.java

         *
         * @param tf the CIFS context
         * @param domain the domain name
         * @return connection to the domain controller
         * @throws CIFSException if the connection fails
         */
        SmbTransport getDc(CIFSContext tf, String domain) throws CIFSException;
    
        /**
         * Resolve the location of a DFS path
         *
         * @param domain the domain for the DFS referral
         * @param root the DFS root share
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java

    import java.util.Date;
    
    import jcifs.smb1.util.Hexdump;
    import jcifs.smb1.util.LogStream;
    
    class SmbComNegotiateResponse extends ServerMessageBlock {
    
        int dialectIndex;
        SmbTransport.ServerData server;
    
        SmbComNegotiateResponse(final SmbTransport.ServerData server) {
            this.server = server;
        }
    
        @Override
        int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top