Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StructureSize (0.06 sec)

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

        protected int readErrorResponse ( byte[] buffer, int bufferIndex ) throws SMBProtocolDecodingException {
            int start = bufferIndex;
            int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
            if ( structureSize != 9 ) {
                throw new SMBProtocolDecodingException("Error structureSize should be 9");
            }
            this.errorContextCount = buffer[ bufferIndex + 2 ];
            bufferIndex += 4;
    
    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/internal/smb2/nego/Smb2NegotiateResponse.java

    
        @Override
        protected int readBytesWireFormat ( byte[] buffer, int bufferIndex ) throws SMBProtocolDecodingException {
            int start = bufferIndex;
    
            int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
            if ( structureSize != 65 ) {
                throw new SMBProtocolDecodingException("Structure size is not 65");
            }
    
            this.securityMode = SMBUtil.readInt2(buffer, bufferIndex + 2);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
Back to top