Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getNetbiosRcvBufSize (0.75 sec)

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

                mockConfig.isForceExtendedSecurity();
                mockConfig.getLmHostsFileName();
                mockConfig.getNetbiosScope();
                mockConfig.getNetbiosSndBufSize();
                mockConfig.getNetbiosRcvBufSize();
                mockConfig.getNetbiosRetryTimeout();
                mockConfig.getNetbiosRetryCount();
                mockConfig.getNetbiosCachePolicy();
                mockConfig.getMaximumBufferSize();
    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.getNetbiosRetryCount();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getNetbiosRcvBufSize()
         */
        @Override
        public int getNetbiosRcvBufSize() {
            return this.delegate.getNetbiosRcvBufSize();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getNetbiosCachePolicy()
         */
        @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/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.snd_buf = new byte[tc.getConfig().getNetbiosSndBufSize()];
            this.rcv_buf = new byte[tc.getConfig().getNetbiosRcvBufSize()];
            this.out = new DatagramPacket(this.snd_buf, tc.getConfig().getNetbiosSndBufSize(), this.baddr, NAME_SERVICE_UDP_PORT);
            this.in = new DatagramPacket(this.rcv_buf, tc.getConfig().getNetbiosRcvBufSize());
            this.resolveOrder = tc.getConfig().getResolveOrder();
    
            initCache(tc);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

            when(mockConfig.getBroadcastAddress()).thenReturn(InetAddress.getByName("255.255.255.255"));
            when(mockConfig.getNetbiosSndBufSize()).thenReturn(576);
            when(mockConfig.getNetbiosRcvBufSize()).thenReturn(576);
            when(mockConfig.getResolveOrder()).thenReturn(Arrays.asList(ResolverType.RESOLVER_DNS)); // Only DNS, no broadcast
            when(mockConfig.getNetbiosHostname()).thenReturn("TESTHOST");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertEquals(5000, config.getNetbiosSoTimeout());
            assertNull(config.getNetbiosScope());
            assertEquals(60 * 60 * 10, config.getNetbiosCachePolicy());
            assertEquals(576, config.getNetbiosRcvBufSize());
            assertEquals(2, config.getNetbiosRetryCount());
            assertEquals(3000, config.getNetbiosRetryTimeout());
            assertEquals(576, config.getNetbiosSndBufSize());
    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/Configuration.java

         */
        int getNetbiosSndBufSize();
    
        /**
         *
         * Property {@code jcifs.netbios.rcv_buf_size} (int, default 576)
         *
         * @return netbios recieve buffer size
         */
        int getNetbiosRcvBufSize();
    
        /**
         *
         * Property {@code jcifs.netbios.retryTimeout} (int, default 3000)
         *
         * @return timeout of retry requests, in milliseconds
         */
        int getNetbiosRetryTimeout();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

            return this.netbiosScope;
        }
    
        @Override
        public int getNetbiosCachePolicy() {
            return this.netbiosCachePolicy;
        }
    
        @Override
        public int getNetbiosRcvBufSize() {
            return this.netbiosRevcBufferSize;
        }
    
        @Override
        public int getNetbiosRetryCount() {
            return this.netbiosRetryCount;
        }
    
        @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