From 28e52c294e0f46a4ef23a7017f56d30127027444 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 11 Oct 2015 13:41:50 +0200 Subject: [PATCH] added missing overrun field for paths --- server/include/path.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/include/path.h b/server/include/path.h index 6722e9374..c381c3069 100644 --- a/server/include/path.h +++ b/server/include/path.h @@ -90,6 +90,8 @@ struct path unsigned int skipped; /** Counter for dropped messages due to reordering */ unsigned int dropped; + /** Counter of overruns for fixed-rate sending */ + unsigned int overrun; }; /** Create a path by allocating dynamic memory. */