1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 02:19:04 +00:00

Merged r27646 from nmap-npingchages: Add function to determine the tranport layer protocol in a chain of PacketElements

This commit is contained in:
luis
2013-03-29 13:46:14 +00:00
parent 62199a4666
commit d5fe922084
2 changed files with 57 additions and 0 deletions

View File

@@ -158,6 +158,7 @@ class PacketParser {
static int freePacketChain(PacketElement *first);
static const char *test_packet_parser(PacketElement *test_pkt);
static bool is_response(PacketElement *sent, PacketElement *rcvd);
static PacketElement *find_transport_layer(PacketElement *chain);
}; /* End of class PacketParser */