Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isFailed (0.04 sec)

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

                        && (tc.getConfig().getSessionLimit() == 0 || conn.getNumSessions() < tc.getConfig().getSessionLimit())) {
                    try {
                        if (conn.isFailed() || connectedOnly && conn.isDisconnected()) {
                            continue;
                        }
    
                        if (forceSigning && !conn.isSigningEnforced()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

            return !this.transport.isDisconnected() && this.connectionState.get() == 2;
        }
    
        /**
         * @return whether the session has been lost
         */
        public boolean isFailed() {
            return this.transport.isFailed();
        }
    
        /**
         * @return whether encryption is enabled for this session
         */
        public boolean isEncryptionEnabled() {
            return this.encryptionContext != null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

        }
    
        /**
         * Checks if the transport is in a failed state.
         *
         * @return whether the transport is marked failed
         */
        public boolean isFailed() {
            return this.state == 5 || this.state == 6;
        }
    
        /**
         * Send a request message and recieve response
         *
         * @param <T> the response type
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top