Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for resolveDfs0 (0.91 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                try {
                    return resolveDfs0(loc, request);
                } catch (final SmbException smbe) {
                    // The connection may have been dropped?
                    if (smbe.getNtStatus() != NtStatus.NT_STATUS_NOT_FOUND && !(smbe.getCause() instanceof TransportException)) {
                        throw smbe;
                    }
                    log.debug("resolveDfs", smbe);
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            addFlags(SMB2_FLAGS_DFS_OPERATIONS);
            this.resolveDfs = resolve;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.RequestWithPath#isResolveInDfs()
         */
        @Override
        public boolean isResolveInDfs() {
            return this.resolveDfs;
        }
    
        /**
         * Set the security flags for the create request
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Dfs.java

                            do {
                                if (path == null) {
                                    /* Store references to the map and key so that
                                     * SmbFile.resolveDfs can re-insert the dr list with
                                     * the dr that was successful so that subsequent
                                     * attempts to resolve DFS use the last successful
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            if (getUncPath0().length() == 1 || dest.getUncPath0().length() == 1) {
                throw new SmbException("Invalid operation for workgroups, servers, or shares");
            }
    
            resolveDfs(null);
            dest.resolveDfs(null);
    
            if (!tree.equals(dest.tree)) {
                throw new SmbException("Invalid operation for workgroups, servers, or shares");
            }
    
            if (LogStream.level >= 3) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            request.setResolveInDfs(true);
    
            String str = request.toString();
            assertNotNull(str);
            assertTrue(str.contains("name=test\\file.txt"));
            assertTrue(str.contains("resolveDfs=true"));
        }
    
        @Test
        @DisplayName("Test writeBytesWireFormat with empty name")
        void testWriteBytesWireFormatEmptyName() {
            request = new Smb2CreateRequest(mockConfig, "");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DfsImpl.java

                links.map.put("\\", dr);
                DfsReferralDataInternal tmp = dr;
                do {
                    /*
                     * Store references to the map and key so that
                     * SmbFile.resolveDfs can re-insert the dr list with
                     * the dr that was successful so that subsequent
                     * attempts to resolve DFS use the last successful
                     * referral first.
                     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
Back to top