Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NT_STATUS_NOT_FOUND (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            } else if (tree.inDomainDfs && !(request instanceof NtTransQuerySecurityDesc) && !(request instanceof SmbComClose)
                    && !(request instanceof SmbComFindClose2)) {
                throw new SmbException(NtStatus.NT_STATUS_NOT_FOUND, false);
            } else if (request != null) {
                request.flags2 &= ~SmbConstants.FLAGS2_RESOLVE_PATHS_IN_DFS;
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top