Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  2. 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;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  3. 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);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  4. 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,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top