Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BC (0.16 sec)

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

            this.errorContextCount = buffer[ bufferIndex + 2 ];
            bufferIndex += 4;
    
            int bc = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
            if ( bc > 0 ) {
                this.errorData = new byte[bc];
                System.arraycopy(buffer, bufferIndex, this.errorData, 0, bc);
                bufferIndex += bc;
            }
            return bufferIndex - start;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

            return as(type, sequence.getObjectAt(index));
        }
    
    
        /**
         * Read a  tagged object without parsing it's contents
         *
         * BC no longer seems to allow that out of the box
         *
         * @param expectTag
         * @param in
         * @return coded bytes of the tagged object
         * @throws IOException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top