Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isPossiblyDfs (0.11 sec)

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

            return this.treeReferral;
        }
    
    
        /**
         * @return whether this tree may be a DFS share
         * @throws SmbException
         */
        public boolean isPossiblyDfs () throws SmbException {
            if ( this.connectionState.get() == 2 ) {
                // we are connected, so we know
                return isDfs();
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. 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)
Back to top