Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for onError (0.61 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbTree.java

                }
            }
        }
    
        void treeDisconnect(final boolean inError) {
            synchronized (session.transport()) {
    
                if (connectionState != 2) { // not-connected
                    return;
                }
                connectionState = 3; // disconnecting
    
                if (!inError && tid != 0) {
                    try {
                        send(new SmbComTreeDisconnect(), null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

                            try {
                                t.treeDisconnect(inError, true);
                            } finally {
                                this.tree = null;
                                this.treeAcquired = false;
                            }
                        } else {
                            this.delegate.disconnect(inError);
                        }
                    }
                }
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                for (final Enumeration e = trees.elements(); e.hasMoreElements();) {
                    final SmbTree t = (SmbTree) e.nextElement();
                    t.treeDisconnect(inError);
                }
    
                if (!inError && transport.server.security != SmbConstants.SECURITY_SHARE) {
                    /*
                     * Logoff And X Request / Response
                     */
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeImpl.java

                } catch (final CIFSException e) {
                    throw new SmbException("Logon share connection failed", e);
                }
            }
        }
    
        boolean treeDisconnect(final boolean inError, final boolean inUse) {
            boolean wasInUse = false;
            try (SmbSessionImpl sess = getSession(); SmbTransportImpl transport = sess.getTransport()) {
                synchronized (transport) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                    && tc.getConfig().getDefaultPassword() != null;
        }
    
        boolean logoff(boolean inError, boolean inUse) {
            boolean wasInUse = false;
            try (SmbTransportImpl trans = getTransport()) {
                synchronized (trans) {
    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