- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for WinError (0.05 sec)
-
src/main/java/jcifs/smb/SmbEnumerationUtil.java
final SmbComTransaction req = new NetShareEnum(th.getConfig()); final SmbComTransactionResponse resp = new NetShareEnumResponse(th.getConfig()); th.send(req, resp); if (resp.getStatus() != WinError.ERROR_SUCCESS) { throw new SmbException(resp.getStatus(), true); } return resp.getResults(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
try { t.treeDisconnect(inError, true); } finally { this.tree = null; this.treeAcquired = false; } } else { this.delegate.disconnect(inError); } } } } }
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/SmbSession.java
for (final Enumeration e = trees.elements(); e.hasMoreElements();) { final SmbTree t = (SmbTree) e.nextElement(); t.treeDisconnect(inError); } if (!inError && transport.server.security != SmbConstants.SECURITY_SHARE) { /* * Logoff And X Request / Response */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} catch (final CIFSException e) { throw new SmbException("Logon share connection failed", e); } } } boolean treeDisconnect(final boolean inError, final boolean inUse) { boolean wasInUse = false; try (SmbSessionImpl sess = getSession(); SmbTransportImpl transport = sess.getTransport()) { synchronized (transport) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0)