Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ensureConnected (0.07 sec)

  1. 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)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                            throw new SmbException(ie.getMessage(), ie);
                        }
                    }
    
                    try {
                        trans.ensureConnected();
    
                        /*
                         * Session Setup And X Request / Response
                         */
    
                        if ( log.isDebugEnabled() ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top