- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for DFS (0.01 sec)
-
src/main/java/jcifs/SmbResourceLocator.java
*/ String getServer (); /** * If the path of this <code>SmbFile</code> falls within a DFS volume, * this method will return the referral path to which it maps. Otherwise * <code>null</code> is returned. * * @return URL to the DFS volume */ String getDfsPath (); /** * @return the transport port, if specified */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.vcNumber = 1; this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false); this.dfsTTL = Config.getLong(p, "jcifs.smb.client.dfs.ttl", 300); this.dfsStrictView = Config.getBoolean(p, "jcifs.smb.client.dfs.strictView", false); this.dfsConvertToFqdn = Config.getBoolean(p, "jcifs.smb.client.dfs.convertToFQDN", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
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 */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
import jcifs.smb.SmbTransportPoolImpl; /** * @author mbechler * */ public class BaseContext extends AbstractCIFSContext { private final Configuration config; private final DfsResolver dfs; private final SidResolver sidResolver; private final Handler urlHandler; private final NameServiceClient nameServiceClient; private final BufferCache bufferCache;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/TreeConnectResponse.java
/** * @return tree id */ int getTid (); /** * @return service */ String getService (); /** * @return whether the share is in DFS */ boolean isShareDfs (); /** * @return whether the tree id is a valid one */ boolean isValidTid ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/RequestWithPath.java
/** * @param resolve * */ void setResolveInDfs ( boolean resolve ); /** * * @return whether to resolve the request path in DFS */ boolean isResolveInDfs ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.dfs; import java.nio.charset.StandardCharsets; import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * Information returned in DFS referrals * * @author mbechler * @internal */ public interface DfsReferralData { /** * * @param type * @return the referral adapted to type * @throws ClassCastException
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb1.trans2; import jcifs.Configuration; import jcifs.internal.dfs.DfsReferralResponseBuffer; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.smb1.trans.SmbComTransactionResponse; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationResponse.java
boolean isSigningEnabled (); /** * * @return whether the server requires signing */ boolean isSigningRequired (); /** * @return whether the server supports DFS */ boolean isDFSSupported (); /** * @param request */ void setupRequest ( CommonServerMessageBlock request ); /** * @param resp */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0)