Data Hex Stream
Voltz45 opened this issue · comments
Chikko commented
is it possible for me to parse packet and take Hex stream data only on TCP Header?
Arpit Bansal commented
TcpPacket tcpPacket = pcap4jPacket.get(TcpPacket.class));
if (tcpPacket != null) {
TcpHeader pcap4jTCPHeader = tcpPacket.getHeader();
// Do stuff here
}
Hope this helps.