- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for DfsReferral (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/DfsReferral.java
/** The next DFS referral in the chain */ DfsReferral next; /** Map containing DFS referral entries */ Map map; /** The cache key for this referral */ String key = null; /** * Constructs a new DfsReferral instance */ public DfsReferral() { this.next = this; } void append(final DfsReferral dr) { dr.next = next; next = dr; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsReferral.java
* * * <p>This class is intended for internal use.</p> */ public class DfsReferral extends SmbException { /** * */ private static final long serialVersionUID = 1486630733410281686L; /** The underlying DFS referral data */ private final DfsReferralData data; /** * Constructs a DfsReferral with the specified referral data * * @param data the DFS referral dataRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
* * @see jcifs.SmbResourceLocator#getDfsPath() */ @Override public String getDfsPath() { if (this.dfsReferral == null) { return null; } return "smb://" + this.dfsReferral.getServer() + "/" + this.dfsReferral.getShare() + this.getUNCPath().replace('\\', '/'); } /** * {@inheritDoc} * * @see jcifs.SmbResourceLocator#getPort()Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
final SmbTransport trans = SmbTransport.getSmbTransport(addr, 0); final CacheEntry entry = new CacheEntry(Dfs.TTL * 10L); DfsReferral dr = trans.getDfsReferrals(auth, "", 0); if (dr != null) { final DfsReferral start = dr; do { final String domain = dr.server.toLowerCase(); entry.map.put(domain, new HashMap());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
return canonical; } @Override public DfsReferralData getDfsReferral() { return dfsReferral; } public void setDfsReferral(DfsReferralData dfsReferral) { this.dfsReferral = dfsReferral; } @Override public String getUNCPath() { return null; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
rn = resp.numReferrals; } final DfsReferral[] drs = new DfsReferral[rn]; final String[] arr = new String[4]; final long expiration = System.currentTimeMillis() + Dfs.TTL * 1000; for (int di = 0; di < drs.length; di++) { final DfsReferral dr = new DfsReferral(); /* NTLM HTTP Authentication must be re-negotiatedRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
*/ public String getDfsPath() throws SmbException { resolveDfs(null); if (dfsReferral == null) { return null; } String path = "smb1:/" + dfsReferral.server + "/" + dfsReferral.share + unc; path = path.replace('\\', '/'); if (isDirectory()) { path += '/'; } return path;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
final CommonServerMessageBlockRequest request, final T response, final Set<RequestParam> params) throws CIFSException, DfsReferral { for (int limit = 10; limit > 0; limit--) { if (request instanceof RequestWithPath) { ensureDFSResolved(loc, (RequestWithPath) request); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import jcifs.smb1.Config; import jcifs.smb1.UniAddress; import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.smb1.DfsReferral; import jcifs.smb1.smb1.NtStatus; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SmbAuthException; import jcifs.smb1.smb1.SmbException; import jcifs.smb1.smb1.SmbFile;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
import jcifs.DfsReferralData; import jcifs.NameServiceClient; import jcifs.SmbConstants; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; import jcifs.netbios.NbtAddress; import jcifs.smb.DfsReferral; import jcifs.smb.NtStatus; import jcifs.smb.NtlmPasswordAuthentication; import jcifs.smb.SmbAuthException; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbFileInputStream; /**
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0)