Skip to content

Commit

Permalink
Update conformance language for devices which have the capability
Browse files Browse the repository at this point in the history
to detect late/lost packets
  • Loading branch information
cristian-recoseanu committed Oct 31, 2024
1 parent 982561a commit 4a4ddc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ The receiver monitoring model provides means of gathering metrics around late an

Lost packets are packets that never arrived. Late packets are packets that arrived but arrived too late to be usable by the essence reconstruction process without increasing the link offset delay.

The feature is expressed with the following methods:
Devices with capabilities to detect late or lost packets MUST implement the following methods:

* GetLostPacketCounters - returns a collection of counters which hold the name, description and numeric value of the counter (this allows more capable devices to report lost packets across different interfaces).
* GetLatePacketCounters - returns a collection of counters which hold the name, description and numeric value of the counter (this allows more capable devices to report late packets across different interfaces).
* ResetPacketCounters - allows a client application to reset both the Lost and Late packet counters to 0.
* GetLostPacketCounters - returns a non empty collection of counters which hold the name, description and numeric value of the counter (this allows more capable devices to report lost packets across different interfaces).
* GetLatePacketCounters - returns a non empty collection of counters which hold the name, description and numeric value of the counter (this allows more capable devices to report late packets across different interfaces).
* ResetPacketCounters - resets both the Lost and Late packet counters to 0.

The `autoResetPacketCounters` property allows clients to configure if the packet counters automatically reset with each Receiver activation (by default devices MUST have this enabled). If this is enabled, receivers MUST reset all packet counters to 0 after each activation.

Expand Down

0 comments on commit 4a4ddc1

Please sign in to comment.