public short getCode(byte[] icmpHeader) {
    byte[] code = BitOperator.parse(icmpHeader, IcmpHeader.CODE_START_BIT, IcmpHeader.CODE_END_BIT);
    short returnVar = ByteOperator.parseBytesshort(code);
    return returnVar;
  }