Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNetbiosSndBufSize (0.12 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getNetbiosSoTimeout();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosSndBufSize()
         */
        @Override
        public int getNetbiosSndBufSize () {
            return this.delegate.getNetbiosSndBufSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosRetryTimeout()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.baddr = tc.getConfig().getBroadcastAddress();
            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());
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.netbiosRetryCount;
        }
    
    
        @Override
        public int getNetbiosRetryTimeout () {
            return this.netbiosRetryTimeout;
        }
    
    
        @Override
        public int getNetbiosSndBufSize () {
            return this.netbiosSendBufferSize;
        }
    
    
        @Override
        public String getLmHostsFileName () {
            return this.lmhostsFilename;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

        String getNetbiosScope ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.snd_buf_size</tt> (int, default 576)
         * 
         * @return netbios send buffer size
         */
        int getNetbiosSndBufSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.rcv_buf_size</tt> (int, default 576)
         * 
         * @return netbios recieve buffer size
         */
        int getNetbiosRcvBufSize ();
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top