- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for NT_STATUS_NOT_FOUND (0.09 seconds)
-
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The user must change the password before first logon */ int NT_STATUS_PASSWORD_MUST_CHANGE = 0xC0000224; /** The object was not found */ int NT_STATUS_NOT_FOUND = 0xC0000225; /** The referenced account is currently locked out */ int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; /** The pathname does not traverse a DFS junction */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtStatus.java
/** The user must change the password before first logon */ int NT_STATUS_PASSWORD_MUST_CHANGE = 0xC0000224; /** The object was not found */ int NT_STATUS_NOT_FOUND = 0xC0000225; /** The referenced account is currently locked out */ int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; /** The remote system refused the network connection */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
return resolveDfs0(loc, request); } catch (final SmbException smbe) { // The connection may have been dropped? if (smbe.getNtStatus() != NtStatus.NT_STATUS_NOT_FOUND && !(smbe.getCause() instanceof TransportException)) { throw smbe; } log.debug("resolveDfs", smbe); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 30.4K bytes - Click Count (1)