- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 90 for Dfs (0.02 sec)
-
src/main/java/jcifs/internal/dfs/Referral.java
*/ package jcifs.internal.dfs; import java.util.ArrayList; import java.util.List; import jcifs.Decodable; import jcifs.RuntimeCIFSException; import jcifs.internal.smb1.trans2.Trans2GetDfsReferralResponse; import jcifs.internal.util.SMBUtil; import jcifs.util.Strings; /** * Represents a DFS (Distributed File System) referral entry containing server redirection information.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* itself. */ String getName(); /** * Returns the DFS referral data associated with this resource if it has been resolved through DFS. * * @return dfs referral data */ DfsReferralData getDfsReferral(); /** * Everything but the last component of the URL representing this SMB
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
} @Test @DisplayName("getDfs should return initialized DFS resolver") void testGetDfs() { // When DfsResolver dfs = context.getDfs(); // Then assertNotNull(dfs, "DFS resolver should not be null"); assertSame(dfs, context.getDfs(), "Should return same instance on multiple calls"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
/** * MSRPC implementation for enumerating DFS roots. * This class provides functionality to enumerate Distributed File System (DFS) * roots on a server using the NetDFS RPC interface. */ public class MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx { /** * Creates a new DFS root enumeration request for the specified server. * * @param server the server name to enumerate DFS roots from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
} /** * Get a DFS referral for the specified target * * @param tf the CIFS context * @param trans the SMB transport * @param target the target path * @param targetDomain the target domain * @param targetHost the target host * @param root the DFS root * @param path the DFS path * @return the DFS referral data or null if not found
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
// fallthrough to normal handling log.debug("No tree referral but in DFS"); } if (request != null) { request.setFullUNCPath(session.getTargetDomain(), session.getTargetHost(), rfullpath); } // for standalone DFS we could be checking for a referral here, too
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
*/ package jcifs.internal.smb1.trans2; import jcifs.Configuration; import jcifs.internal.dfs.DfsReferralRequestBuffer; import jcifs.internal.smb1.trans.SmbComTransaction; /** * Trans2 GetDfsReferral request message for DFS referral queries. * This class implements the TRANS2_GET_DFS_REFERRAL transaction to request * DFS referral information for distributed file system path resolution. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
*/ package jcifs.internal.dfs; import java.util.Locale; import java.util.Map; import java.util.Objects; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.DfsReferralData; import jcifs.internal.smb1.trans2.Trans2GetDfsReferralResponse; /** * Implementation of DFS referral data for internal use. * Provides concrete implementation of DFS referral information including server details,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
checkStatus(request, response); } @Override public String toString() { return super.toString() + "[" + address + ":" + port + "]"; } /* DFS */ /* Split DFS path like \fs1.example.com\root5\link2\foo\bar.txt into at * most 3 components (not including the first index which is always empty): * result[0] = "" * result[1] = "fs1.example.com"
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * * Property {@code jcifs.smb.client.dfs.ttl} (int, default 300) * * @return title to live, in seconds, for DFS cache entries */ long getDfsTtl(); /** * * Property {@code jcifs.smb.client.dfs.strictView} (boolean, default false) * * @return whether a authentication failure during DFS resolving will throw an exception */ boolean isDfsStrictView();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)