예제 #1
0
파일: Chunk.java 프로젝트: nagyistoce/icafe
 public void write(OutputStream os) throws IOException {
   IOUtils.writeIntMM(os, (int) length);
   IOUtils.writeIntMM(os, chunkType.getValue());
   IOUtils.write(os, data);
   IOUtils.writeIntMM(os, (int) crc);
 }
예제 #2
0
파일: Chunk.java 프로젝트: nagyistoce/icafe
 public boolean isValidCRC() {
   return (calculateCRC(chunkType.getValue(), data) == crc);
 }