Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for casa (0.11 sec)

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

        public synchronized void connect( long timeout ) throws TransportException {
            try {
                switch (state) {
                    case 0:
                        break;
                    case 3:
                        return; // already connected
                    case 4:
                        state = 0;
                        throw new TransportException( "Connection in error", te );
                    default:
    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

            IOException ioe = null;
    
            switch ( this.state ) {
            case 0: /* not connected - just return */
            case 5:
            case 6:
                return false;
            case 2:
                hard = true;
            case 3: /* connected - go ahead and disconnect */
                if ( this.response_map.size() != 0 && !hard && inUse ) {
    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)
Back to top