Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isInDomainDfs (0.08 sec)

  1. 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)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

                final String rfullpath =
                        request != null ? request.getFullUNCPath() : '\\' + loc.getServer() + '\\' + loc.getShare() + loc.getUNCPath();
                if (t.isInDomainDfs() || !t.isPossiblyDfs()) {
                    if (!t.isInDomainDfs()) {
                        log.trace("Not in DFS");
                        return loc;
                    }
                    // need to adjust request path
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

        /**
         *
         */
        void markDomainDfs() {
            this.inDomainDfs = true;
        }
    
        /**
         * @return whether this tree was accessed using domain DFS
         */
        public boolean isInDomainDfs() {
            return this.inDomainDfs;
        }
    
        /**
         * @param referral
         */
        public void setTreeReferral(final DfsReferralData referral) {
            this.treeReferral = referral;
        }
    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