Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for inDomainDfs (0.05 sec)

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

            return this.inDfs;
        }
    
        /**
         *
         */
        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) {
    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/smb1/smb1/SmbTreeTest.java

        }
    
        @Test
        void testToString() {
            SmbTree tree = new SmbTree(session, "testShare", "testService");
            tree.tid = 123;
            tree.inDfs = true;
            tree.inDomainDfs = false;
            tree.connectionState = 2;
    
            String result = tree.toString();
            // Verify the toString contains the expected information
            assertTrue(result.contains("TESTSHARE"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top