Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for markDomainDfs (0.07 sec)

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

                log.debug("Signatures for file enabled but not required " + this);
            }
    
            if (referral != null) {
                t.markDomainDfs();
            }
    
            try {
                if (log.isTraceEnabled()) {
                    log.trace("doConnect: " + addr);
                }
                t.treeConnect(null, null);
                return t.acquire();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTreeImplTest.java

        @Test
        void testDfs() throws SmbException {
            SmbTreeImpl tree = new SmbTreeImpl(session, "SHARE", "A:");
            assertFalse(tree.isDfs());
            assertFalse(tree.isInDomainDfs());
            tree.markDomainDfs();
            assertTrue(tree.isInDomainDfs());
        }
    
        // Test case for treeConnect method with SMB1
        @Test
        void testTreeConnectSmb1() throws CIFSException, IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

        }
    
        /**
         * @return whether this is a DFS share
         */
        public boolean isDfs() {
            return this.inDfs;
        }
    
        /**
         *
         */
        void markDomainDfs() {
            this.inDomainDfs = true;
        }
    
        /**
         * @return whether this tree was accessed using domain DFS
         */
        public boolean isInDomainDfs() {
            return this.inDomainDfs;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
Back to top