Skip to content

Commit b74a454

Browse files
authored
Stats (#187)
* added bandwidth stats * fix - init bw structs * fix - declaration after case * examples/udxperf - iperf clone for udx streams * added rto counter, fast-recovery counter and packet retransmit counter * simplified bandwidth to bytes_in and bytes_out * clean some logging --------- Co-authored-by: James Thomas <jthomas>
1 parent 316c213 commit b74a454

File tree

5 files changed

+717
-8
lines changed

5 files changed

+717
-8
lines changed

examples/CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
add_executable(server server.c)
22
add_executable(client client.c)
3+
add_executable(udxperf udxperf.c)
34

45
target_link_libraries(
56
server
@@ -12,3 +13,10 @@ target_link_libraries(
1213
PRIVATE
1314
udx_static
1415
)
16+
17+
target_link_libraries(
18+
udxperf
19+
PRIVATE
20+
udx_static
21+
)
22+

0 commit comments

Comments
 (0)