For v2, iflib will parse packet headers before queueing a packet.
(This is not a well-thought out idea; just a way to queue a packet based
on information inside its headers.)
This commit also adds a new field in the structure that holds parsed
header information from packets; it stores the IP ToS/ traffic class
field found in the IPv4/IPv6 header.
To help, it will only partially parse header packets before queueing
them by using a new header parsing function that does less than the
current parsing header function; for our purposes we only need up to the
minimal IP header in order to get the IP ToS infromation and don't need
to pull up more data.
For now, v1 and v2 co-exist in this patch; this might not be an
acceptable solution for inclusion upstream, but it should be good enough
for testing. (We may just replace the old function and force drivers to
compat with that based on FreeBSD_version).
Signed-off-by: Eric Joyner <erj@FreeBSD.org>