// nbltimestamp.h
void NdisCopyNblTimestampInfo(
[_Inout_] NET_BUFFER_LIST *NblDest,
[_In_] NET_BUFFER_LIST const *NblSrc
);
View the official Windows Driver Kit DDI referenceNo description available.
Miniport drivers call the NdisCopyNblTimestampInfo function to copy a software or hardware timestamp from a source NET_BUFFER_LIST structure to a destination NET_BUFFER_LIST structure.
NblDest [_Inout_]A pointer to a destination NET_BUFFER_LIST structure.
NblSrc [_In_]A pointer to the source NET_BUFFER_LIST structure where the miniport driver stored the timestamp.
Miniport drivers can use NdisSetNblTimestampInfo and NdisGetNblTimestampInfo to set and retrieve timestamps.
For more information on generating hardware and software timestamps, see Attaching timestamps to packets.
Overview of NDIS packet timestamping
Attaching timestamps to packets