- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getTrustedDomains (0.13 sec)
-
src/main/java/jcifs/smb1/smb1/Dfs.java
protected static CacheEntry FALSE_ENTRY = new Dfs.CacheEntry(0L); protected CacheEntry _domains = null; /* aka trusted domains cache */ protected CacheEntry referrals = null; public HashMap getTrustedDomains(NtlmPasswordAuthentication auth) throws SmbAuthException { if (DISABLED || auth.domain == "?") return null; if (_domains != null && System.currentTimeMillis() > _domains.expiration) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
/** * @param tc * */ public DfsImpl ( CIFSContext tc ) {} private Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> getTrustedDomains ( CIFSContext tf ) throws SmbAuthException { if ( tf.getConfig().isDfsDisabled() || tf.getCredentials().getUserDomain() == null || tf.getCredentials().getUserDomain().isEmpty() ) { return null; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0)