Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNetbiosRcvBufSize (0.21 sec)

  1. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. 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);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

        int getNetbiosSndBufSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.rcv_buf_size</tt> (int, default 576)
         * 
         * @return netbios recieve buffer size
         */
        int getNetbiosRcvBufSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.retryTimeout</tt> (int, default 3000)
         * 
         * @return timeout of retry requests, in milliseconds
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top