Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTreeReferral (0.14 sec)

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

         */
        public void setTreeReferral(final DfsReferralData referral) {
            this.treeReferral = referral;
        }
    
        /**
         * @return the treeReferral
         */
        public DfsReferralData getTreeReferral() {
            return this.treeReferral;
        }
    
        /**
         * @return whether this tree may be a DFS share
         * @throws SmbException
         */
        public boolean isPossiblyDfs() throws SmbException {
    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/main/java/jcifs/smb/SmbTreeConnection.java

                        log.trace("Not in DFS");
                        return loc;
                    }
                    // need to adjust request path
                    final DfsReferralData dr = t.getTreeReferral();
                    if (dr != null) {
                        if (log.isDebugEnabled()) {
                            log.debug(String.format("Need to adjust request path %s (full: %s) -> %s", rpath, rfullpath, dr));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
Back to top