- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for SmbTree (0.06 seconds)
-
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
} @Test void testEquals() { SmbTree tree1 = new SmbTree(session, "testShare", "testService"); SmbTree tree2 = new SmbTree(session, "testShare", "testService"); SmbTree tree3 = new SmbTree(session, "otherShare", "testService"); SmbTree tree4 = new SmbTree(session, "testShare", "otherService"); // Test equal trees (same share and service)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
trees = new Vector(); connectionState = 0; } synchronized SmbTree getSmbTree(String share, final String service) { SmbTree t; if (share == null) { share = "IPC$"; } for (final Enumeration e = trees.elements(); e.hasMoreElements();) { t = (SmbTree) e.nextElement(); if (t.matches(share, service)) { return t;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 20.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
result[ri] = ""; ri++; } } DfsReferral getDfsReferrals(final NtlmPasswordAuthentication auth, final String path, int rn) throws SmbException { final SmbTree ipc = getSmbSession(auth).getSmbTree("IPC$", null); final Trans2GetDfsReferralResponse resp = new Trans2GetDfsReferralResponse(); ipc.send(new Trans2GetDfsReferral(path), resp);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
@Override public void logoff() throws IOException { if (witnessClient != null) { witnessClient.close(); } super.logoff(); } ``` ### 5.2 Tree Connection Integration ```java // In SmbTree.java public void connectWithWitnessSupport() throws IOException { // Perform normal tree connection super.connect(); // Register for witness notifications for this share
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0)