- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for getNtStatus (0.12 sec)
-
src/main/java/jcifs/smb/SmbTreeImpl.java
log.debug(String.format("VALIDATE_NEGOTIATE_INFO response code 0x%x", e.getNtStatus())); } log.trace("VALIDATE_NEGOTIATE_INFO returned error", e); if (req.getResponse().isReceived() && req.getResponse().isVerifyFailed() || e.getNtStatus() == NtStatus.NT_STATUS_ACCESS_DENIED) { // this is the signature error
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
} } return "unknown"; } private long extractNtStatus(Throwable cause) { if (cause instanceof SmbException) { return ((SmbException) cause).getNtStatus(); } return 0; } private String extractServerMessage(Throwable cause) { if (cause instanceof SmbException) { // Try to get server message from SMB exception
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
if (LogStream.level > 1) { log.println("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.smb1.util.Hexdump.toHexString(sae.getNtStatus(), 8) + ": " + sae); } if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) { /* Server challenge no longer valid for * externally supplied password hashes.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
} } catch (final SmbAuthException sae) { log.warn("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.util.Hexdump.toHexString(sae.getNtStatus(), 8) + ": " + sae); if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) { /* * Server challenge no longer valid for * externally supplied password hashes.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
// retrying make no sense, as it will never become available again. if (params.contains(RequestParam.NO_RETRY) || !(smbe.getCause() instanceof TransportException) && smbe.getNtStatus() != NtStatus.NT_STATUS_INVALID_PARAMETER) { log.debug("Not retrying", smbe); throw smbe; } log.debug("send", smbe); last = smbe;
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/smb/SmbFileInputStream.java
n = resp.getDataLength(); } catch (final SmbException e) { if (e.getNtStatus() == 0xC0000011) { // NT_STATUS_END_OF_FILE log.debug("Reached end of file", e); n = -1; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
}).when(handle).sendrecv(any()); SmbException ex = assertThrows(SmbException.class, () -> cache.resolveSids(handle, policy, sids)); assertEquals(NtStatus.NT_STATUS_ACCESS_DENIED, ex.getNtStatus()); } @Test @DisplayName("resolveSids(CIFSContext,server,sids,offset,length) resolves missing, caches, and reuses cache") void resolveSids_withOffsetAndCache_behavesCorrectly() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
} } catch (final SmbException se) { if (LogStream.level > 2) { se.printStackTrace(log); } if (se.getNtStatus() != NtStatus.NT_STATUS_UNSUCCESSFUL) { throw se; } } if (dirents[i].isDirectory()) { dirCount++; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0)