- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isDfsConvertToFQDN (0.15 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isDfsDisabled(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDfsConvertToFQDN() */ @Override public boolean isDfsConvertToFQDN () { return this.delegate.isDfsConvertToFQDN(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isForceUnicode() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
if ( roots != null ) { dr = getLinkReferral(tf, domain, root, path, now, roots); } if ( tf.getConfig().isDfsConvertToFQDN() && dr instanceof DfsReferralDataImpl ) { ( (DfsReferralDataImpl) dr ).fixupDomain(domain); } } } if ( dr == null && path != 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) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration. * See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround. * * @author mbechler */ public class JAASAuthenticator extends Kerb5Authenticator implements CallbackHandler, SmbRenewableCredentials {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
* See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration. * See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround. */ public class Kerb5Authenticator extends NtlmPasswordAuthenticator { private static final long serialVersionUID = 1999400043787454432L;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.dfsStrictView; } @Override public long getDfsTtl () { return this.dfsTTL; } @Override public boolean isDfsConvertToFQDN () { return this.dfsConvertToFqdn; } @Override public String getLogonShare () { return this.logonShare; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * Property <tt>jcifs.smb.client.dfs.convertToFQDN</tt> (boolean, default false) * * @return whether to convert NetBIOS names returned by DFS to FQDNs */ boolean isDfsConvertToFQDN (); /** * Minimum protocol version * * Property <tt>jcifs.smb.client.minVersion</tt> (string, default SMB1) * * @see DialectVersion
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} throw new SmbException(resp.getErrorCode(), null); } if ( req.getDomain() != null && getContext().getConfig().isDfsConvertToFQDN() && dr instanceof DfsReferralDataImpl ) { ( (DfsReferralDataImpl) dr ).fixupDomain(req.getDomain()); } if ( log.isDebugEnabled() ) { log.debug("Got referral " + dr);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)