public int getDstPort(byte[] udpHeader) {
    byte[] dstport = BitOperator.parse(udpHeader, UdpHeader.DSTPORT_START_BIT, UdpHeader.DSTPORT_END_BIT);
    int returnVar = ByteOperator.parseBytesint(dstport);
    return returnVar;
  }