Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNetbiosSoTimeout (0.18 sec)

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

            return this.delegate.getNetbiosScope();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosSoTimeout()
         */
        @Override
        public int getNetbiosSoTimeout () {
            return this.delegate.getNetbiosSoTimeout();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosSndBufSize()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 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

        }
    
    
        void ensureOpen ( int timeout ) throws IOException {
            this.closeTimeout = 0;
            if ( this.transportContext.getConfig().getNetbiosSoTimeout() != 0 ) {
                this.closeTimeout = Math.max(this.transportContext.getConfig().getNetbiosSoTimeout(), timeout);
            }
            // If socket is still good, the new closeTimeout will
            // be ignored; see tryClose comment.
    Java
    - Registered: Sun May 05 00:10:10 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

        }
    
    
        @Override
        public InetAddress getNetbiosLocalAddress () {
            return this.netbiosLocalAddress;
        }
    
    
        @Override
        public int getNetbiosSoTimeout () {
            return this.netbiosSocketTimeout;
        }
    
    
        @Override
        public String getNetbiosScope () {
            return this.netbiosScope;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.soTimeout</tt> (int, default 5000)
         * 
         * @return socket timeout for netbios connections, in milliseconds
         */
        int getNetbiosSoTimeout ();
    
    
        /**
         * 
         * 
         * @return virtual circuit number to use
         */
        int getVcNumber ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top