Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for coerced (0.23 sec)

  1. src/main/java/jcifs/smb/NtStatus.java

        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;
        public static final int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;
        public static final int NT_STATUS_NO_MORE_FILES = 0x80000006;
    
        static final int[] NT_STATUS_CODES = {
    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)
  2. src/main/java/jcifs/http/NtlmHttpFilter.java

         *            initiated by the client (MSIE post requests after successful NTLM SSP
         *            authentication). If false and the user has not been authenticated yet
         *            the client will be forced to send an authentication (server sends
         *            HttpServletResponse.SC_UNAUTHORIZED).
         * @return True if the negotiation is complete, otherwise false
         * @throws ServletException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

         * initiated by the client (MSIE post requests after successful NTLM SSP
         * authentication). If false and the user has not been authenticated yet
         * the client will be forced to send an authentication (server sends
         * HttpServletResponse.SC_UNAUTHORIZED).
         * @return True if the negotiation is complete, otherwise false
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtStatus.java

        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;
        public static final int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;
    
        static final int[] NT_STATUS_CODES = {
            NT_STATUS_OK,
            NT_STATUS_UNSUCCESSFUL,
    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)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                throw new SmbUnsupportedOperationException();
            case NtStatus.NT_STATUS_PATH_NOT_COVERED:
                if ( ! ( req instanceof RequestWithPath ) ) {
                    throw new SmbException("Invalid request for a DFS NT_STATUS_PATH_NOT_COVERED response " + req.getClass().getName());
                }
                String path = ( (RequestWithPath) req ).getFullUNCPath();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                case NtStatus.NT_STATUS_ACCOUNT_LOCKED_OUT:
                case NtStatus.NT_STATUS_TRUSTED_DOMAIN_FAILURE:
                    throw new SmbAuthException( resp.errorCode );
                case NtStatus.NT_STATUS_PATH_NOT_COVERED:
                    if( req.auth == null ) {
                        throw new SmbException( resp.errorCode, null );
                    }
    
                    DfsReferral dr = getDfsReferrals(req.auth, req.path, 1);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top