Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getResponseTimeout (0.07 sec)

  1. src/main/java/jcifs/Configuration.java

        /**
         *
         * Property {@code jcifs.smb.client.responseTimeout} (int, default 30000)
         *
         * @return timeout for SMB responses, in milliseconds
         */
        int getResponseTimeout();
    
        /**
         *
         * Property {@code jcifs.smb.client.lport} (int)
         *
         * @return local port to use for outgoing connections
         */
        int getLocalPort();
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K 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
    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