public int getFlowLabel(byte[] ipv6Header) {
    byte[] flowlabel = BitOperator.parse(ipv6Header, IPv6Header.FLOWLABEL_START_BIT, IPv6Header.FLOWLABEL_END_BIT);
    int returnVar = ByteOperator.parseBytesint(flowlabel);
    return returnVar;
  }