Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for te (0.11 sec)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

                        state = 0;
                        throw new TransportException( "Connection in error", te );
                    default:
                        TransportException te = new TransportException( "Invalid state: " + state );
                        state = 0;
                        throw te;
                }
    
                state = 1;
                te = null;
                thread = new Thread( this, name );
                thread.setDaemon( true );
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

                        throw new ConnectionTimeoutException("Connection timeout");
                    case 2:
                        if ( this.te != null ) { /* doConnect throw Exception */
                            this.state = 4; /* error */
                            cleanupThread(timeout);
                            throw this.te;
                        }
                        this.state = 3; /* Success! */
                        return true;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                }
            }
        }
        public void connect() throws SmbException {
            try {
                super.connect( RESPONSE_TIMEOUT );
            } catch( TransportException te ) {
                throw new SmbException( "Failed to connect: " + address, te );
            }
        }
        protected void doConnect() throws IOException {
            /*
             * Negotiate Protocol Request / Response
             */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

            try {
                return super.connect(this.transportContext.getConfig().getResponseTimeout());
            }
            catch ( TransportException te ) {
                throw new SmbException("Failed to connect: " + this.address, te);
            }
    
        }
    
    
        @Override
        protected void doConnect () throws IOException {
            /*
             * Negotiate Protocol Request / Response
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top