--- Extract N bytes from any part of the packet payload. --- payloadStartbyte and payloadEndbyte are optional parameters. If not provided, the entire payload is returned. --- payloadStartbyte and payloadEndbyte are zero-based indexes into the payload. --- In finding the start of the Ethernet payload, this function will account for Ethernet header bytes associated --- with the source and destination Ethernet addresses, optional VLAN tagging, and the ethertype field. string GetPayloadString(packet, payloadStartbyte, payloadEndbyte) |