public int getSrcPort(byte[] udpHeader) {
    byte[] srcport = BitOperator.parse(udpHeader, UdpHeader.SRCPORT_START_BIT, UdpHeader.SRCPORT_END_BIT);
    int returnVar = ByteOperator.parseBytesint(srcport);
    return returnVar;
  }