Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for ensureConnected (0.05 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 (final TransportException te) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top