- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NT_STATUS_NOT_FOUND (0.05 sec)
-
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 */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (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 */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (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); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0)