Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SUCCESS (0.33 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                        }
                        return addrs; // Success
                    default:
                        throw new UnknownHostException(hostname);
                    }
    
                    if ( addr != null ) { // Success
                        if ( log.isDebugEnabled() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                    // this is the signature error
                    throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e);
                }
    
                // other errors are treated as success
                return;
            }
            ValidateNegotiateInfoResponse out = resp.getOutputData(ValidateNegotiateInfoResponse.class);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                            this.state = 4; /* error */
                            cleanupThread(timeout);
                            throw this.te;
                        }
                        this.state = 3; /* Success! */
                        return true;
                    }
                    break;
                case 3:
                    return true; // already connected
                case 4:
                    this.state = 6;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

                                throw ex;
        
                            uid = response.uid;
        
                            if( request.digest != null ) {
                                /* success - install the signing digest */
                                transport.digest = request.digest;
                            }
        
                            connectionState = 2;    
    
                            state = 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/UniAddress.java

                            }
                            return addrs; // Success
                        default:
                            throw new UnknownHostException( hostname );
                    }
                    UniAddress[] addrs = new UniAddress[1];
                    addrs[0] = new UniAddress( addr );
                    return addrs; // Success
                } catch( IOException ioe ) {
                    // Failure
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
Back to top