Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0x00000020 (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001;
        /**
         * Flag indicating this is an asynchronous command.
         */
        public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002;
        /**
         * Flag indicating this operation is related to the previous operation in a compound request.
         */
        public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004;
        /**
         * Flag indicating the message is signed.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

        int NT_STATUS_MORE_PROCESSING_REQUIRED = 0xC0000016;
        /** Access is denied */
        int NT_STATUS_ACCESS_DENIED = 0xC0000022;
        /** The data area passed to a system call is too small */
        int NT_STATUS_BUFFER_TOO_SMALL = 0xC0000023;
        /** The object name is invalid */
        int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
        /** The object was not found */
    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/smb1/smb1/NtStatus.java

         */
    
        /** The operation completed successfully */
        int NT_STATUS_SUCCESS = 0x00000000;
        /** The requested operation was unsuccessful */
        int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        /** The requested operation is not implemented */
        int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
        /** The specified information class is invalid */
        int NT_STATUS_INVALID_INFO_CLASS = 0xC0000003;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top