Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for setTransport (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

                // Re-establish channel binding
                manager.performChannelBinding(channel);
    
                // Update channel with new transport
                channel.setTransport(newTransport);
                channel.setState(ChannelState.ESTABLISHED);
    
                // Clear failover state on success
                failoverStates.remove(channel.getChannelId());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

        /**
         * Get the transport for this channel
         *
         * @return SMB transport
         */
        public SmbTransport getTransport() {
            return transport;
        }
    
        /**
         * Set the transport for this channel
         *
         * @param transport SMB transport
         */
        public void setTransport(SmbTransport transport) {
            this.transport = transport;
        }
    
        /**
         * Get local network interface
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  3. docs/smb3-features/03-multi-channel-design.md

                    
                    // Re-establish channel binding
                    manager.performChannelBinding(channel);
                    
                    // Update channel with new transport
                    channel.setTransport(newTransport);
                    channel.setState(ChannelState.ESTABLISHED);
                    
                    // Clear failover state on success
                    failoverStates.remove(channel.getChannelId());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

                return transport.getNegotiateResponse().getSendBufferSize();
            }
        }
    
        @Override
        public int getReceiveBufferSize() throws SmbException {
            try (SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbSessionInternalTest.java

        }
    
        // Happy path: transport is returned and verified
        @Test
        @DisplayName("getTransport returns mocked transport")
        void getTransport_happy() {
            when(session.getTransport()).thenReturn(transport);
            assertSame(transport, session.getTransport());
            verify(session).getTransport();
        }
    
        // Happy path: connect to logon share completes without exception
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

            try (SmbSessionImpl session = getSession()) {
                if (session == null) {
                    return;
                }
                try (SmbTransportImpl transport = session.getTransport()) {
                    synchronized (transport) {
                        final SmbTreeImpl t = getTreeInternal();
                        if (t != null) {
                            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

            if (this.connectionState.get() == 2) {
                // we are connected, so we know
                return isDfs();
            }
            try (SmbTransportImpl transport = this.session.getTransport()) {
                return transport.getNegotiateResponse().isDFSSupported();
            }
        }
    
        /**
         * @return the session this tree is connected in
         */
        public SmbSessionImpl getSession() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/MultiChannelManager.java

            if (channelGroup != null) {
                for (ChannelInfo channel : channelGroup.getChannels()) {
                    try {
                        if (channel.getTransport() != null) {
                            channel.getTransport().disconnect(true);
                        }
                    } catch (Exception e) {
                        log.warn("Error closing channel {}: {}", channel.getChannelId(), e.getMessage());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            return channels.values().stream().filter(c -> c.getTransport() == transport).findFirst().orElse(null);
        }
    
        /**
         * Remove a channel
         *
         * @param channel channel to remove
         */
        public void removeChannel(ChannelInfo channel) {
            channels.remove(channel.getChannelId());
            try {
                if (channel.getTransport() != null) {
                    channel.getTransport().close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbSessionImplTest.java

            verify(enc, times(1)).decryptMessage(eq(new byte[] { 5 }));
        }
    
        @Test
        @DisplayName("getTransport returns acquired transport instance")
        void testGetTransportAcquire() {
            SmbSessionImpl session = newSession();
            clearInvocations(transport);
            SmbTransportImpl t = session.getTransport();
            assertSame(transport, t);
            verify(transport, times(1)).acquire();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top