Method StalePacket
StalePacket(ushort, ushort, ushort)
Describes whether a packet is stale in the context of sequenced pipelines.
Declaration
public static bool StalePacket(ushort sequence, ushort oldSequence, ushort windowSize)
Parameters
Type | Name | Description |
---|---|---|
ushort | sequence | The more recent sequence ID. |
ushort | oldSequence | The older sequence ID. |
ushort | windowSize | The window size |
Returns
Type | Description |
---|---|
bool | A boolean value containing the results of LessThan16(ushort, ushort) where lhs = sequence and rhs = oldSequence - windowSize. |