Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SMB_COM_NT_CREATE_ANDX (0.15 sec)

  1. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                        ServerMessageBlock.SMB_COM_OPEN_ANDX, ServerMessageBlock.SMB_COM_READ_ANDX, ServerMessageBlock.SMB_COM_WRITE_ANDX,
                        ServerMessageBlock.SMB_COM_NT_CREATE_ANDX, ServerMessageBlock.SMB_COM_NT_TRANSACT,
                        ServerMessageBlock.SMB_COM_NT_TRANSACT_SECONDARY, ServerMessageBlock.SMB_COM_LOCKING_ANDX, (byte) 0xFF };
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 */
    
                if (wordCount > 2) {
                    readParameterWordsWireFormat(buffer, bufferIndex + 4);
    
                    /* The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an
                     * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)"
                     * junk. We need to bump up the wordCount here so that this method returns
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            case SMB_COM_RENAME -> "SMB_COM_RENAME";
            case SMB_COM_DELETE -> "SMB_COM_DELETE";
            case SMB_COM_DELETE_DIRECTORY -> "SMB_COM_DELETE_DIRECTORY";
            case SMB_COM_NT_CREATE_ANDX -> "SMB_COM_NT_CREATE_ANDX";
            case SMB_COM_OPEN_ANDX -> "SMB_COM_OPEN_ANDX";
            case SMB_COM_READ_ANDX -> "SMB_COM_READ_ANDX";
            case SMB_COM_CLOSE -> "SMB_COM_CLOSE";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                 */
    
                if (this.wordCount > 2) {
                    readParameterWordsWireFormat(buffer, bufferIndex + 4);
    
                    /*
                     * The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an
                     * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)"
                     * junk. We need to bump up the wordCount here so that this method returns
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

                    return 33;
                }
            };
            // Set command to NT_CREATE_ANDX and mark extended
            resp.command = ServerMessageBlock.SMB_COM_NT_CREATE_ANDX;
            resp.isExtended = true;
    
            byte[] buf = new byte[256];
            buf[33] = 34; // baseline wordCount reported by server
            buf[34] = (byte) 0xFF; // no further andx
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            case SMB_COM_RENAME -> "SMB_COM_RENAME";
            case SMB_COM_DELETE -> "SMB_COM_DELETE";
            case SMB_COM_DELETE_DIRECTORY -> "SMB_COM_DELETE_DIRECTORY";
            case SMB_COM_NT_CREATE_ANDX -> "SMB_COM_NT_CREATE_ANDX";
            case SMB_COM_OPEN_ANDX -> "SMB_COM_OPEN_ANDX";
            case SMB_COM_READ_ANDX -> "SMB_COM_READ_ANDX";
            case SMB_COM_CLOSE -> "SMB_COM_CLOSE";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                throws SmbException {
            if (!"A:".equals(svc)) {
                switch (request.getCommand()) {
                case ServerMessageBlock.SMB_COM_OPEN_ANDX:
                case ServerMessageBlock.SMB_COM_NT_CREATE_ANDX:
                case ServerMessageBlock.SMB_COM_READ_ANDX:
                case ServerMessageBlock.SMB_COM_WRITE_ANDX:
                case ServerMessageBlock.SMB_COM_CLOSE:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

                    return 33;
                }
            };
            testBlock.configureForTest(true, 2);
            testBlock.setCommand((byte) ServerMessageBlock.SMB_COM_NT_CREATE_ANDX);
    
            byte[] buffer = new byte[1024];
            buffer[33] = 34; // wordCount for extended response
            buffer[34] = (byte) 0xFF; // andxCommand
            SMBUtil.writeInt2(20, buffer, 102); // byteCount
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top