- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NT_STATUS_NOT_FOUND (0.11 sec)
-
src/main/java/jcifs/smb1/smb1/NtStatus.java
public static final int NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0xC0000199; public static final int NT_STATUS_PASSWORD_MUST_CHANGE = 0xC0000224; public static final int NT_STATUS_NOT_FOUND = 0xC0000225; public static final int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; public static final int NT_STATUS_PATH_NOT_COVERED = 0xC0000257;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
public static final int NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 0xC0000199; public static final int NT_STATUS_PASSWORD_MUST_CHANGE = 0xC0000224; public static final int NT_STATUS_NOT_FOUND = 0xC0000225; public static final int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; public static final int NT_STATUS_CONNECTION_REFUSED = 0xC0000236; public static final int NT_STATUS_PATH_NOT_COVERED = 0xC0000257;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 10:09:29 UTC 2019 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
return resolveDfs0(loc, request); } catch ( 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
!(request instanceof SmbComClose) && !(request instanceof SmbComFindClose2)) { throw new SmbException(NtStatus.NT_STATUS_NOT_FOUND, false); } else { if (request != null) request.flags2 &= ~ServerMessageBlock.FLAGS2_RESOLVE_PATHS_IN_DFS; } } void send( ServerMessageBlock request,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)