Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getLmHostsFileName (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/netbios/Lmhosts.java

            try {
                if (tc.getConfig().getLmHostsFileName() != null) {
                    final File f = new File(tc.getConfig().getLmHostsFileName());
                    long lm = f.lastModified();
    
                    if (lm > this.lastModified) {
                        if (log.isDebugEnabled()) {
                            log.debug("Reading " + tc.getConfig().getLmHostsFileName());
                        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isAES256Enabled();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getLmHostsFileName()
         */
        @Override
        public String getLmHostsFileName() {
            return this.delegate.getLmHostsFileName();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getNetbiosScope()
         */
        @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)
  3. src/main/java/jcifs/Configuration.java

         */
        int getLeaseBreakTimeout();
    
        /**
         *
         *
         * Property {@code jcifs.netbios.lmhosts} (string)
         *
         * @return lmhosts file to use
         */
        String getLmHostsFileName();
    
        /**
         *
         * Property {@code jcifs.netbios.scope} (string)
         *
         * @return default netbios scope to set in requests
         */
        String getNetbiosScope();
    
        /**
    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)
  4. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertEquals(2, config.getNetbiosRetryCount());
            assertEquals(3000, config.getNetbiosRetryTimeout());
            assertEquals(576, config.getNetbiosSndBufSize());
            assertNull(config.getLmHostsFileName());
        }
    
        @Test
        @DisplayName("Test security configuration getters")
        void testSecurityConfigurationGetters() {
            assertFalse(config.isSigningEnabled());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 20.6K bytes
    - Click Count (0)
Back to Top