- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NTSTATUS (0.03 sec)
-
src/main/java/jcifs/smb/SmbFile.java
private static boolean shouldRetryWithBasicRequest(final CIFSException e) { if (e instanceof SmbException) { final int ntStatus = ((SmbException) e).getNtStatus(); return ntStatus == NtStatus.NT_STATUS_INVALID_PARAMETER || ntStatus == 0xC00000BB || ntStatus == NtStatus.NT_STATUS_INVALID_INFO_CLASS; } return false; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} catch (final UnknownHostException uhe) {} catch (final SmbException se) { switch (se.getNtStatus()) { case NtStatus.NT_STATUS_NO_SUCH_FILE: case NtStatus.NT_STATUS_OBJECT_NAME_INVALID: case NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND: case NtStatus.NT_STATUS_OBJECT_PATH_NOT_FOUND: break; default: throw se; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)