- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for DFS (0.03 sec)
-
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/smb/SmbTreeImpl.java
} /** * @return whether this is a DFS share */ public boolean isDfs () { return this.inDfs; } /** * */ void markDomainDfs () { this.inDomainDfs = true; } /** * @return whether this tree was accessed using domain DFS */ public boolean isInDomainDfs () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K 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) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
* DFS referrals. (E.g. a resource with a DFS root's parent will still point to the DFS root not the share it's actually * located in). * - share + uncpath within it: This is the relevant information for most SMB requests. Both are adjusted by DFS * referrals. Nested resources will inherit the information already resolved by the parent resource. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.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.util.Arrays; import jcifs.Decodable; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class DfsReferralResponseBuffer implements Decodable {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0)