Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isInDomainDfs (0.15 sec)

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

                String rfullpath = request != null ? request.getFullUNCPath() : ( '\\' + loc.getServer() + '\\' + loc.getShare() + loc.getUNCPath() );
                if ( t.isInDomainDfs() || !t.isPossiblyDfs() ) {
                    if ( t.isInDomainDfs() ) {
                        // need to adjust request path
                        DfsReferralData dr = t.getTreeReferral();
                        if ( dr != null ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  2. 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 ( DfsReferralData referral ) {
            this.treeReferral = referral;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
Back to top