- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 412 for referred (0.05 sec)
-
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/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) -
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/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) -
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/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
// SMB_DIRECT_RDMA_TRANSFORM array (only one element) SMBUtil.writeInt2(rdmaTransformId, data, idx); idx += 2; SMBUtil.writeInt2(0, data, idx); // Reserved idx += 2; SMBUtil.writeInt4(0, data, idx); // Reserved idx += 4; return data; } @Override public int encode(byte[] dst, int dstIndex) { byte[] data = getData();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K 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) -
src/main/java/jcifs/smb1/smb1/DfsReferral.java
/** Target share for this referral */ public String share; // Share /** The complete UNC path link */ public String link; /** Path relative to tree from which this referral was thrown */ public String path; // Path relative to tree from which this referral was thrown /** Whether to resolve hashes in the path */ public boolean resolveHashes; /** Expiration time for this referral entry */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0)