Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for logoff (0.09 sec)

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

                    } while (state != 0);
                } catch (final SmbException se) {
                    logoff(true);
                    connectionState = 0;
                    throw se;
                } finally {
                    transport.notifyAll();
                }
            }
        }
    
        void logoff(final boolean inError) {
            synchronized (transport()) {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacLogonInfo.java

            }
        }
    
        /**
         * Returns the user's logon time.
         * @return the logon timestamp
         */
        public Date getLogonTime() {
            return this.logonTime;
        }
    
        /**
         * Returns the user's logoff time.
         * @return the logoff timestamp
         */
        public Date getLogoffTime() {
            return this.logoffTime;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. docs/smb3-features/04-directory-leasing-design.md

        }
    }
    
    public DirectoryLeaseManager getDirectoryLeaseManager() {
        return directoryLeaseManager;
    }
    
    @Override
    public void logoff() throws IOException {
        if (directoryLeaseManager != null) {
            directoryLeaseManager.shutdown();
        }
        super.logoff();
    }
    ```
    
    ## 6. Configuration
    
    ### 6.1 Configuration Properties
    ```java
    // In PropertyConfiguration.java
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            }
    
            /* logoff old sessions */
            if (SO_TIMEOUT > 0 && sessionExpiration < (now = System.currentTimeMillis())) {
                sessionExpiration = now + SO_TIMEOUT;
                iter = sessions.listIterator();
                while (iter.hasNext()) {
                    ssn = (SmbSession) iter.next();
                    if (ssn.expiration < now) {
                        ssn.logoff(false);
                    }
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  5. docs/smb3-features/02-persistent-handles-design.md

        }
    }
    
    public PersistentHandleManager getHandleManager() {
        return handleManager;
    }
    
    @Override
    public void logoff() throws IOException {
        if (handleManager != null) {
            handleManager.shutdown();
        }
        // ... existing logoff logic ...
    }
    ```
    
    ## 7. Configuration
    
    ### 7.1 Configuration Properties
    ```java
    // In PropertyConfiguration.java
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  6. docs/smb3-features/06-witness-protocol-design.md

                // Could fall back to original address
            }
        });
    }
    
    @Override
    public void logoff() throws IOException {
        if (witnessClient != null) {
            witnessClient.close();
        }
        super.logoff();
    }
    ```
    
    ### 5.2 Tree Connection Integration
    ```java
    // In SmbTree.java
    public void connectWithWitnessSupport() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         */
    
        /** SMB2 negotiate protocol command */
        protected static final short SMB2_NEGOTIATE = 0x00;
        /** SMB2 session setup command */
        protected static final short SMB2_SESSION_SETUP = 0x01;
        /** SMB2 logoff command */
        protected static final short SMB2_LOGOFF = 0x02;
        /** SMB2 tree connect command */
        protected static final short SMB2_TREE_CONNECT = 0x0003;
        /** SMB2 tree disconnect command */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /**
         * SMB command to setup a session with extended attributes.
         */
        public static final byte SMB_COM_SESSION_SETUP_ANDX = (byte) 0x73;
    
        /**
         * SMB command to logoff from a session with extended attributes.
         */
        public static final byte SMB_COM_LOGOFF_ANDX = (byte) 0x74;
    
        /**
         * SMB command to connect to a tree share with extended attributes.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  9. docs/en/docs/img/logo-margin/logo-teal.png

    logo-teal.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. docs/en/docs/img/logo-margin/logo-white-bg.png

    logo-white-bg.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top