Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for connectLogon (0.25 sec)

  1. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
            }
            return cs;
        }
    
        /**
         *
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbTreeInternal#connectLogon(jcifs.CIFSContext)
         */
        @Override
        @Deprecated
        public void connectLogon(final CIFSContext tf) throws SmbException {
            if (tf.getConfig().getLogonShare() == null) {
                try {
                    treeConnect(null, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            // When: Perform logon
            poolSpy.logon(ctx, address);
    
            // Then: Should connect to IPC$ share
            verify(tree).connectLogon(ctx);
        }
    
        @Test
        @DisplayName("Should sort addresses by fail count and failover")
        void testFailoverWithFailCounts() throws Exception {
            // Given: Multiple addresses with different fail counts
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    SmbTreeInternal tree = smbSession.getSmbTree(tf.getConfig().getLogonShare(), null).unwrap(SmbTreeInternal.class)) {
                tree.connectLogon(tf);
            }
        }
    
        /**
         * Perform health check on connections
         */
        private void performHealthCheck() {
            long now = System.currentTimeMillis();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
Back to top