Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for isSendNTLMTargetName (0.27 sec)

  1. src/test/java/jcifs/ConfigurationTest.java

                mockConfig.isAllowCompound("cmd");
                mockConfig.getMachineId();
                mockConfig.isDisableSpnegoIntegrity();
                mockConfig.isEnforceSpnegoIntegrity();
                mockConfig.isSendNTLMTargetName();
                mockConfig.getGuestPassword();
                mockConfig.getGuestUsername();
                mockConfig.isAllowGuestFallback();
            });
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  3. 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);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. 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>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/config/BaseConfigurationTest.java

    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        }
    
        private static SSPContext setupTargetName(CIFSContext tc, String host, NtlmContext ntlmContext) {
            if (host != null && tc.getConfig().isSendNTLMTargetName()) {
                ntlmContext.setTargetName(String.format("cifs/%s", host));
            }
            return ntlmContext;
        }
    
        @Override
        public NtlmPasswordAuthenticator clone() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  7. 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
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. 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;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top