- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for markDomainDfs (0.07 sec)
-
src/main/java/jcifs/smb/SmbTreeConnection.java
log.debug("Signatures for file enabled but not required " + this); } if (referral != null) { t.markDomainDfs(); } try { if (log.isTraceEnabled()) { log.trace("doConnect: " + addr); } t.treeConnect(null, null); return t.acquire();
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/test/java/jcifs/smb/SmbTreeImplTest.java
@Test void testDfs() throws SmbException { SmbTreeImpl tree = new SmbTreeImpl(session, "SHARE", "A:"); assertFalse(tree.isDfs()); assertFalse(tree.isInDomainDfs()); tree.markDomainDfs(); assertTrue(tree.isInDomainDfs()); } // Test case for treeConnect method with SMB1 @Test void testTreeConnectSmb1() throws CIFSException, IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K 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() { return this.inDomainDfs;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0)