Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SMB_COM_WRITE (0.05 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComWrite.java

        SmbComWrite() {
            command = SMB_COM_WRITE;
        }
    
        SmbComWrite(final int fid, final int offset, final int remaining, final byte[] b, final int off, final int len) {
            this.fid = fid;
            this.count = len;
            this.offset = offset;
            this.remaining = remaining;
            this.b = b;
            this.off = off;
            command = SMB_COM_WRITE;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java

            assertEquals(off, getFieldValue(write, "off"), "Off should be updated");
            assertEquals(len, getFieldValue(write, "count"), "Count should be updated");
            assertEquals(SMB_COM_WRITE, write.command, "Command should be SMB_COM_WRITE");
        }
    
        /**
         * Test writeParameterWordsWireFormat writes correct bytes
         */
        @Test
        public void testWriteParameterWordsWireFormat() {
            // Arrange
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComWrite.java

        private byte[] b;
    
        /**
         * Constructs an empty write request.
         *
         * @param config the configuration to use
         */
        public SmbComWrite(final Configuration config) {
            super(config, SMB_COM_WRITE);
        }
    
        /**
         * Constructs a write request to write data to a file.
         *
         * @param config the configuration to use
         * @param fid the file identifier
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top