Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ensureConnected (0.16 sec)

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

                                        .unwrap(SmbTransportImpl.class);
                                transport.ensureConnected();
                                return transport;
                            }
                            catch ( IOException ex ) {
                                log.debug("Connection failed " + dr.getServer(), ex);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                synchronized ( transport ) {
    
                    // this needs to be done before the reference to the remote hostname later
                    transport.ensureConnected();
    
                    if ( waitForState(transport) == 2 ) {
                        // already connected
                        return null;
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                Arrays.fill(this.sbuf, (byte) 0);
            }
        }
    
    
        /**
         * Connect the transport
         *
         * @throws SmbException
         */
        @Override
        public boolean ensureConnected () throws SmbException {
            try {
                return super.connect(this.transportContext.getConfig().getResponseTimeout());
            }
            catch ( TransportException te ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top