protected short readShort(byte[] content) throws IOException {
   short value = ByteUtils.convertShortFromBytes(content, index);
   index += 2;
   return value;
 }