1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

dd logging for aimd

This commit is contained in:
Steffen Vogel 2019-02-15 11:00:40 +01:00
parent 0e35af35e3
commit c872711887

View file

@ -289,6 +289,9 @@ char * rtp_print(struct node *n)
}
strcatf(&buf, ", rtcp.mode=%s, rtcp.throttle_mode=%s", mode, throttle_mode);
if (r->rtcp.throttle_mode == RTCP_MODE_AIMD)
strcatf(&buf, ", aimd.a=%f, aimd.b=%f, aimd.start_rate", r->aimd.a, r->aimd.b, r->aimd.last_rate);
}
free(local);