- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isDfsDisabled (0.17 sec)
-
src/main/java/jcifs/smb/DfsImpl.java
*/ 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) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isDfsStrictView(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDfsDisabled() */ @Override public boolean isDfsDisabled () { return this.delegate.isDfsDisabled(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDfsConvertToFQDN() */ @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/internal/smb1/com/SmbComNegotiateResponse.java
/** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#isDFSSupported() */ @Override public boolean isDFSSupported () { return !getConfig().isDfsDisabled() && haveCapabilitiy(SmbConstants.CAP_DFS); } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#isSigningNegotiated() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
} return getTestServer(); } @Override @Before public void setUp () throws Exception { super.setUp(); Assume.assumeFalse(getContext().getConfig().isDfsDisabled()); } @Test public void resolveDC () throws CIFSException { CIFSContext context = withAnonymousCredentials(); DfsResolver dfs = context.getDfs();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.useUnicode; } @Override public boolean isForceUnicode () { return this.forceUnicode; } @Override public boolean isDfsDisabled () { return this.dfsDisabled; } @Override public boolean isDfsStrictView () { return this.dfsStrictView; } @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/internal/smb2/nego/Smb2NegotiateResponse.java
/** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#isDFSSupported() */ @Override public boolean isDFSSupported () { return !getConfig().isDfsDisabled() && haveCapabilitiy(Smb2Constants.SMB2_GLOBAL_CAP_DFS); } /** * * @return whether SMB encryption is supported by the server */ public boolean isEncryptionSupported () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
boolean isDfsStrictView (); /** * * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false) * * @return whether DFS lookup is disabled */ boolean isDfsDisabled (); /** * Enable hack to make kerberos auth work with DFS sending short names * * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)