Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getResponseTimeout (0.22 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

            this.localPort = localPort;
    
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Transport#getResponseTimeout()
         */
        @Override
        protected int getResponseTimeout ( Request req ) {
            if ( req instanceof CommonServerMessageBlockRequest ) {
                Integer overrideTimeout = ( (CommonServerMessageBlockRequest) req ).getOverrideTimeout();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            return this.smbLocalPort;
        }
    
    
        @Override
        public int getConnTimeout () {
            return this.smbConnectionTimeout;
        }
    
    
        @Override
        public int getResponseTimeout () {
            return this.smbResponseTimeout;
        }
    
    
        @Override
        public int getSoTimeout () {
            return this.smbSocketTimeout;
        }
    
    
        @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)
  3. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.responseTimeout</tt> (int, default 30000)
         * 
         * @return timeout for SMB responses, in milliseconds
         */
        int getResponseTimeout ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.lport</tt> (int)
         * 
         * @return local port to use for outgoing connections
         */
        int getLocalPort ();
    
    
    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