Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for readInt4 (0.1 sec)

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

            // these are common between SYNC/ASYNC
            SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            SMBUtil.readInt2(buffer, bufferIndex);
            this.creditCharge = SMBUtil.readInt2(buffer, bufferIndex + 2);
            bufferIndex += 4;
            this.status = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.command = SMBUtil.readInt2(buffer, bufferIndex);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            command = buffer[bufferIndex + CMD_OFFSET];
            errorCode = readInt4( buffer, bufferIndex + ERROR_CODE_OFFSET );
            flags = buffer[bufferIndex + FLAGS_OFFSET];
            flags2 = readInt2( buffer, bufferIndex + FLAGS_OFFSET + 1 );
            tid = readInt2( buffer, bufferIndex + TID_OFFSET );
            pid = readInt2( buffer, bufferIndex + TID_OFFSET + 2 );
            uid = readInt2( buffer, bufferIndex + TID_OFFSET + 4 );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            bufferIndex += 16;
    
            this.capabilities = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
            this.maxTransactSize = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.maxReadSize = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.maxWriteSize = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            this.server.smaxMpxCount = SMBUtil.readInt2(buffer, bufferIndex);
            bufferIndex += 2;
            this.server.maxNumberVcs = SMBUtil.readInt2(buffer, bufferIndex);
            bufferIndex += 2;
            this.server.maxBufferSize = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.server.maxRawSize = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 15.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServicePacket.java

                srcIndex += this.recordName.readWireFormat(src, srcIndex);
            }
            this.recordType = readInt2(src, srcIndex);
            srcIndex += 2;
            this.recordClass = readInt2(src, srcIndex);
            srcIndex += 2;
            this.ttl = readInt4(src, srcIndex);
            srcIndex += 4;
            this.rDataLength = readInt2(src, srcIndex);
            srcIndex += 2;
    
            this.addrEntry = new NbtAddress[this.rDataLength / 6];
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                srcIndex += recordName.readWireFormat( src, srcIndex );
            }
            recordType = readInt2( src, srcIndex );
            srcIndex += 2;
            recordClass = readInt2( src, srcIndex );
            srcIndex += 2;
            ttl = readInt4( src, srcIndex );
            srcIndex += 4;
            rDataLength = readInt2( src, srcIndex );
            srcIndex += 2;
    
            addrEntry = new NbtAddress[rDataLength / 6];
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmContext.java

                throw new CIFSException("Signing is not initialized");
            }
    
            int ver = SMBUtil.readInt4(mic, 0);
            if ( ver != 1 ) {
                throw new SmbUnsupportedOperationException("Invalid signature version");
            }
    
            MessageDigest mac = Crypto.getHMACT64(sk);
            int seq = SMBUtil.readInt4(mic, 12);
            mac.update(mic, 12, 4); // sequence
            byte[] dgst = mac.digest(data); // data
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SID.java

            this.sub_authority = new int[this.sub_authority_count];
            for ( int i = 0; i < this.sub_authority_count; i++ ) {
                this.sub_authority[ i ] = SMBUtil.readInt4(src, si);
                si += 4;
            }
        }
    
    
        /**
         * Construct a SID from it's textual representation such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            this.errorCode = SMBUtil.readInt4(buffer, bufferIndex + SmbConstants.ERROR_CODE_OFFSET);
            this.flags = buffer[ bufferIndex + SmbConstants.FLAGS_OFFSET ];
            this.flags2 = SMBUtil.readInt2(buffer, bufferIndex + SmbConstants.FLAGS_OFFSET + 1);
            this.tid = SMBUtil.readInt2(buffer, bufferIndex + SmbConstants.TID_OFFSET);
            this.pid = SMBUtil.readInt2(buffer, bufferIndex + SmbConstants.TID_OFFSET + 2);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SID.java

            sub_authority = new int[sub_authority_count];
            for (int i = 0; i < sub_authority_count; i++) {
                sub_authority[i] = ServerMessageBlock.readInt4( src, si );
                si += 4;
            }
        }
        /**
         * Construct a SID from it's textual representation such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top