Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for dfs (0.13 sec)

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

        static final boolean strictView = Config.getBoolean("jcifs.smb1.smb.client.dfs.strictView", false);
        static final long TTL = Config.getLong("jcifs.smb1.smb.client.dfs.ttl", 300);
        static final boolean DISABLED = Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false);
    
        protected static CacheEntry FALSE_ENTRY = new Dfs.CacheEntry(0L);
    
        protected CacheEntry _domains = null; /* aka trusted domains cache */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/DfsTest.java

            DfsResolver dfs = context.getDfs();
    
            String testDomain = getTestDomain();
            assertTrue(dfs.isTrustedDomain(context, testDomain));
            assertTrue(dfs.isTrustedDomain(context, testDomain.toLowerCase(Locale.ROOT)));
            String shortDom = getProperties().get(TestProperties.TEST_DOMAIN_SHORT);
            if ( shortDom != null ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            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;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
        public static class DfsInfo1 extends NdrObject {
    
    Java
    - Registered: Sun Apr 21 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

    	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 Apr 21 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

    	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 Apr 21 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/internal/smb2/tree/Smb2TreeConnectResponse.java

         */
        @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;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int)
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/DfsResolver.java

         */
        SmbTransport getDc ( CIFSContext tf, String domain ) throws CIFSException;
    
    
        /**
         * Resolve the location of a DFS path
         * 
         * @param domain
         * @param root
         * @param path
         * @param tf
         * @return the final referral for the given DFS path
         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DfsImpl.java

    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.DfsReferralData;
    import jcifs.DfsResolver;
    import jcifs.SmbTransport;
    import jcifs.internal.dfs.DfsReferralDataImpl;
    import jcifs.internal.dfs.DfsReferralDataInternal;
    
    
    /**
     * Caching DFS resolver implementation
     * 
     * @internal
     */
    public class DfsImpl implements DfsResolver {
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            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;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
        public static class DfsInfo1 extends NdrObject {
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.dfs.DfsReferralDataInternal#setCacheMap(java.util.Map)
         */
        @Override
        public void setCacheMap ( Map<String, DfsReferralDataInternal> map ) {
            this.map = map;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.dfs.DfsReferralDataInternal#replaceCache()
         */
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
Back to top