- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 433 for referred (0.04 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java
/** * Trans2 GetDfsReferral response message for DFS referral queries. * This class handles the response from a TRANS2_GET_DFS_REFERRAL request, which returns * DFS referral information for redirecting clients to distributed file system targets. */ public class Trans2GetDfsReferralResponse extends SmbComTransactionResponse { /** * Indicates that the referral contains a name list. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java
buffer[7] = 0; // First referral (minimal structure) // Version (2 bytes) SMBUtil.writeInt2(3, buffer, 8); // Size (2 bytes) - the size of this referral entry SMBUtil.writeInt2(20, buffer, 10); // Server type (2 bytes) SMBUtil.writeInt2(1, buffer, 12); // Referral flags (2 bytes) SMBUtil.writeInt2(0, buffer, 14);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java
import java.nio.charset.StandardCharsets; import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * DFS (Distributed File System) referral request buffer encoder. * Creates encoded request buffers for DFS referral requests, specifying the maximum * referral level and target path for which DFS resolution is requested. * * @author mbechler */ public class DfsReferralRequestBuffer implements Encodable {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
import java.util.Arrays; import jcifs.Decodable; import jcifs.internal.util.SMBUtil; /** * DFS (Distributed File System) referral response buffer parser. * Decodes server responses to DFS referral requests, extracting information about * available DFS targets, path consumption details, and referral flags. * * @author mbechler */ public class DfsReferralResponseBuffer implements Decodable { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsReferral.java
/** The underlying DFS referral data */ private final DfsReferralData data; /** * Constructs a DfsReferral with the specified referral data * * @param data the DFS referral data */ public DfsReferral(final DfsReferralData data) { this.data = data; } /** * Get the DFS referral data associated with this referral * * @return the DFS referral data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/DfsResolver.java
*/ DfsReferralData resolve(CIFSContext tf, String domain, String root, String path) throws CIFSException; /** * Add a referral to the cache * * @param path the DFS path for this referral * @param dr the DFS referral data to cache * @param tc the CIFS context containing configuration */ void cache(CIFSContext tc, String path, DfsReferralData dr);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.putShort((short) 0); referral.decode(testBuffer, 0, testBuffer.length); assertEquals(3, referral.getVersion()); assertEquals(100, referral.getSize()); assertEquals(7, referral.getServerType()); assertEquals(1, referral.getRFlags()); assertEquals(20, referral.getProximity()); assertEquals(3600, referral.getTtl());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/paramdoc.mdo
<version>1.0.0</version> <name>deprecation</name> <description>A preferred alternative to this expression, in the case where it's deprecated.</description> <type>String</type> </field> <field> <version>1.0.0</version> <name>ban</name> <description>A preferred alternative to this expression, in the case where it's banned from use.</description>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
boolean isResolveHashes(); /** * Check if this referral needs to be resolved further * * @return whether this refrral needs to be resolved further */ boolean isIntermediate(); /** * Combine this referral with another to form a chain * * @param next the referral to combine with * @return new referral, combining a chain of referrals */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
} /** * * @param loc * @param host * @param referral * @return tree handle * @throws IOException */ public synchronized SmbTreeHandleImpl connectHost(final SmbResourceLocatorImpl loc, String host, final DfsReferralData referral) throws IOException { String targetDomain = ctx.getCredentials().getUserDomain();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0)