Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isExtended (0.09 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         *
         * @return the isExtended
         */
        public final boolean isExtended() {
            return this.isExtended;
        }
    
        /**
         * Sets whether the response is extended.
         *
         * @param isExtended
         *            the isExtended to set
         */
        public final void setExtended(final boolean isExtended) {
            this.isExtended = isExtended;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

        byte oplockLevel;
        int fid, createAction, extFileAttributes, fileType, deviceState;
        long creationTime, lastAccessTime, lastWriteTime, changeTime, allocationSize, endOfFile;
        boolean directory;
        boolean isExtended;
    
        SmbComNTCreateAndXResponse() {
        }
    
        @Override
        int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                     * signing verification failure.
                     */
                    if (command == SMB_COM_NT_CREATE_ANDX && ((SmbComNTCreateAndXResponse) this).isExtended) {
                        wordCount += 8;
                    }
                }
    
                bufferIndex = start + 1 + wordCount * 2;
            }
    
            byteCount = readInt2(buffer, bufferIndex);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. 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
            // byteCount at 33 + 1 + 34*2 = 102
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                     * signing verification failure.
                     */
                    if (this.getCommand() == SMB_COM_NT_CREATE_ANDX && ((SmbComNTCreateAndXResponse) this).isExtended()
                            && ((SmbComNTCreateAndXResponse) this).getFileType() != 1) {
                        this.wordCount += 8;
                    }
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (this instanceof SmbNamedPipe) {
                    request.flags0 |= 0x16;
                    request.desiredAccess |= 0x20000;
                    response.isExtended = true;
                }
                send(request, response);
                f = response.fid;
                attributes = response.extFileAttributes & ATTR_GET_MASK;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top