Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for standalone (0.18 sec)

  1. src/test/java/jcifs/tests/DfsTest.java

            }
        }
    
    
        @Test
        public void resolveRoot () throws CIFSException, URISyntaxException {
            Assume.assumeFalse("Is standalone DFS", isStandalone());
            DfsReferralData ref = doResolve(null, "", true);
    
            assertNotNull(ref);
            assertEquals(getTestDfsTargetServer().toLowerCase(Locale.ROOT), ref.getServer().toLowerCase(Locale.ROOT));
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

            }
    
            if ( dr != null && domain.equals(dr.getServer()) && root.equals(dr.getShare()) ) {
                // If we do cache these we never get to the properly cached
                // standalone referral we might have.
                log.warn("Dropping self-referential referral " + dr);
                dr = null;
            }
            return dr;
        }
    
    
        /**
         * @param tf
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

    
    @SuppressWarnings ( "all" )
    public class netdfs {
    
        public static String getSyntax () {
            return "4fc742e0-4a10-11cf-8273-00aa004ae673:3.0";
        }
    
        public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
        public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/netdfs.idl

    [
    	uuid(4fc742e0-4a10-11cf-8273-00aa004ae673),
    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    [
    	uuid(4fc742e0-4a10-11cf-8273-00aa004ae673),
    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

    import jcifs.smb1.dcerpc.ndr.*;
    
    public class netdfs {
    
        public static String getSyntax() {
            return "4fc742e0-4a10-11cf-8273-00aa004ae673:3.0";
        }
    
        public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
        public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeConnection.java

                    }
                }
    
                if ( request != null ) {
                    request.setFullUNCPath(session.getTargetDomain(), session.getTargetHost(), rfullpath);
                }
    
                // for standalone DFS we could be checking for a referral here, too
                DfsReferralData dr = this.ctx.getDfs().resolve(this.ctx, loc.getServer(), loc.getShare(), loc.getUNCPath());
                if ( dr != null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

            SmbFile dest = (SmbFile) d;
            try ( SmbTreeHandleImpl sh = ensureTreeConnected();
                  SmbTreeHandleImpl th = dest.ensureTreeConnected() ) {
    
                // this still might be required for standalone DFS
                if ( !exists() ) {
                    throw new SmbException(NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND, null);
                }
                dest.exists();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top