summaryrefslogtreecommitdiff
path: root/src/tools/oping/oping.c
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-09 17:45:31 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-09 17:52:16 +0200
commitfd086b87023da5a5ba4e42da2327fa39a6725cd2 (patch)
tree01a41af8da574eb9b94d49179687246eb83a60a6 /src/tools/oping/oping.c
parent192ccde3ae37e33eb33421a6877ed4b4a025fbdb (diff)
downloadouroboros-fd086b87023da5a5ba4e42da2327fa39a6725cd2.tar.gz
ouroboros-fd086b87023da5a5ba4e42da2327fa39a6725cd2.zip
lib: Add a type for struct flow_set
The struct flow_set can now be accessed in applications as flow_set_t. Fixes some malformed lines and homogenizes output when receiving bad SDUs in the oping tool.
Diffstat (limited to 'src/tools/oping/oping.c')
-rw-r--r--src/tools/oping/oping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/oping/oping.c b/src/tools/oping/oping.c
index 7d2edf33..7d41b497 100644
--- a/src/tools/oping/oping.c
+++ b/src/tools/oping/oping.c
@@ -63,7 +63,7 @@ struct c {
struct s {
struct timespec times[OPING_MAX_FLOWS];
- struct flow_set * flows;
+ flow_set_t * flows;
pthread_mutex_t lock;
pthread_t cleaner_pt;