Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isShareDfs (0.05 sec)

  1. src/main/java/jcifs/internal/TreeConnectResponse.java

         */
        String getService();
    
        /**
         * Indicates whether the connected share is part of a Distributed File System (DFS) namespace.
         *
         * @return whether the share is in DFS
         */
        boolean isShareDfs();
    
        /**
         * Indicates whether the tree connection has been successfully established and has a valid tree ID.
         *
         * @return whether the tree id is a valid one
         */
        boolean isValidTid();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        @Override
        public String getService() {
            return null;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.TreeConnectResponse#isShareDfs()
         */
        @Override
        public boolean isShareDfs() {
            return (this.shareFlags & (SMB2_SHAREFLAG_DFS | SMB2_SHAREFLAG_DFS_ROOT)) != 0
                    || (this.capabilities & SMB2_SHARE_CAP_DFS) == SMB2_SHARE_CAP_DFS;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

         */
        public final boolean isSupportSearchBits() {
            return this.supportSearchBits;
        }
    
        /**
         * @return the shareIsInDfs
         */
        @Override
        public final boolean isShareDfs() {
            return this.shareIsInDfs;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.TreeConnectResponse#isValidTid()
         */
        @Override
        public boolean isValidTid() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top