- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for isSendNTLMTargetName (0.21 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isRequireSecureNegotiate(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isSendNTLMTargetName() */ @Override public boolean isSendNTLMTargetName() { return this.delegate.isSendNTLMTargetName(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isPort139FailoverEnabled() */ @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
pom.xml
<from>*</from> <to>*</to> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>boolean isSendNTLMTargetName()</method> </difference> <difference> <className>jcifs/Configuration</className> <differenceType>7012</differenceType> <method>boolean isAllowGuestFallback()</method>
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 12.1K bytes - Click Count (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
// Given when(mockDelegate.isUseSMB2OnlyNegotiation()).thenReturn(true); when(mockDelegate.isRequireSecureNegotiate()).thenReturn(false); when(mockDelegate.isSendNTLMTargetName()).thenReturn(true); when(mockDelegate.isPort139FailoverEnabled()).thenReturn(false); when(mockDelegate.isDfsStrictView()).thenReturn(true); // WhenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.7K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
/** * Property {@code jcifs.smb.client.SendNTLMTargetName} (boolean, true) * * @return whether to send an AvTargetName with the NTLM exchange */ boolean isSendNTLMTargetName(); /** * Property {@code jcifs.smb.client.guestPassword}, defaults to empty string * * @return password used when guest authentication is requested */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.traceResourceUsage; } @Override public boolean isStrictResourceLifecycle() { return this.strictResourceLifecycle; } @Override public boolean isSendNTLMTargetName() { return this.sendNTLMTargetName; } @Override public String getGuestUsername() { return this.guestUsername; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
src/test/java/jcifs/ConfigurationTest.java
mockConfig.isAllowCompound("cmd"); mockConfig.getMachineId(); mockConfig.isDisableSpnegoIntegrity(); mockConfig.isEnforceSpnegoIntegrity(); mockConfig.isSendNTLMTargetName(); mockConfig.getGuestPassword(); mockConfig.getGuestUsername(); mockConfig.isAllowGuestFallback(); }); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3.9K bytes - Click Count (0)