Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for 0x4 (0.12 sec)

  1. src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java

            }
    
            @Test
            @DisplayName("Large MTU capability should be 0x4")
            void testGlobalCapLargeMtu() {
                assertEquals(0x4, Smb2Constants.SMB2_GLOBAL_CAP_LARGE_MTU, "Large MTU capability must be 0x4");
            }
    
            @Test
            @DisplayName("Multi-channel capability should be 0x8")
            void testGlobalCapMultiChannel() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

        /**
         * AES 256 CCM
         */
        public static final int CIPHER_AES256_CCM = 0x3;
    
        /**
         * AES 256 GCM
         */
        public static final int CIPHER_AES256_GCM = 0x4;
    
        private int[] ciphers;
    
        /**
         * Constructs an encryption negotiate context.
         *
         * @param config the configuration (currently unused)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         * Enable other opens for write access
         */
        public static final int FILE_SHARE_WRITE = 0x2;
    
        /**
         * Enable other opens for delete access
         */
        public static final int FILE_SHARE_DELETE = 0x4;
    
        /**
         * If file exists, supersede it. Otherwise create the file
         */
        public static final int FILE_SUPERSEDE = 0x0;
        /**
         * If file exists, open it. Otherwise fail
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb2Constants.java

         * Server supports leasing
         */
        public static final int SMB2_GLOBAL_CAP_LEASING = 0x2;
    
        /**
         * Server supports multi-credit operations
         */
        public static final int SMB2_GLOBAL_CAP_LARGE_MTU = 0x4;
    
        /**
         * Server supports multi-channel connections
         */
        public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x8;
    
        /**
         * Server supports persistent handles
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java

         */
        public static final int SMB2_SESSION_FLAGS_IS_NULL = 0x2;
    
        /**
         * Session flag indicating data encryption is required for this session
         */
        public static final int SMB2_SESSION_FLAG_ENCRYPT_DATA = 0x4;
    
        private int sessionFlags;
        private byte[] blob;
    
        /**
         * Constructs a SMB2 session setup response with the specified configuration
         *
         * @param config
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (1)
  6. src/main/java/jcifs/netbios/NbtException.java

        public static final int FMT_ERR = 0x1;
        /** Server error in the name service */
        public static final int SRV_ERR = 0x2;
        /** Implementation error in the name service */
        public static final int IMP_ERR = 0x4;
        /** Refused error in the name service */
        public static final int RFS_ERR = 0x5;
        /** Active error in the name service */
        public static final int ACT_ERR = 0x6;
        /** Name in conflict error */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

        /**
         * NT transaction function code for change notification.
         * Used to monitor changes to a directory or file.
         */
        public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4;
    
        private final int function;
    
        /**
         * Constructs an NT transaction command.
         *
         * @param config the configuration
         * @param function the NT transaction function code
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

        @DisplayName("Test file share constants")
        void testFileShareConstants() {
            assertEquals(0x1, Smb2CreateRequest.FILE_SHARE_READ);
            assertEquals(0x2, Smb2CreateRequest.FILE_SHARE_WRITE);
            assertEquals(0x4, Smb2CreateRequest.FILE_SHARE_DELETE);
        }
    
        @Test
        @DisplayName("Test file disposition constants")
        void testFileDispositionConstants() {
            assertEquals(0x0, Smb2CreateRequest.FILE_SUPERSEDE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/compression/CompressionService.java

        public static final int COMPRESSION_LZ77 = 0x1;
        public static final int COMPRESSION_LZ77_HUFFMAN = 0x2;
        public static final int COMPRESSION_LZNT1 = 0x3;
        public static final int COMPRESSION_PATTERN_V1 = 0x4;
    
        /**
         * Compresses data using the specified algorithm.
         *
         * @param data the data to compress
         * @param algorithm the compression algorithm to use
         * @return the compressed data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtException.java

        public static final int FMT_ERR = 0x1;
        /** Server error in the name service */
        public static final int SRV_ERR = 0x2;
        /** Implementation error in the name service */
        public static final int IMP_ERR = 0x4;
        /** Refused error in the name service */
        public static final int RFS_ERR = 0x5;
        /** Active error in the name service */
        public static final int ACT_ERR = 0x6;
        /** Name in conflict error */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
Back to top