X-Git-Url: http://sjero.net/git/?p=iperf;a=blobdiff_plain;f=src%2FReporter.c;h=f3bd21930e933b5c639af47c475e89a9f5e61559;hp=c5eff5c35ba5a48e3610073272ea588db7a9a7dd;hb=840e9078558547dbd9e2ed33670c3e116e718897;hpb=a5a03e6ab0fdf9c4d7d4c085fcf01436f9ba3202 diff --git a/src/Reporter.c b/src/Reporter.c index c5eff5c..f3bd219 100644 --- a/src/Reporter.c +++ b/src/Reporter.c @@ -223,6 +223,7 @@ ReportHeader* InitReport( thread_Settings *agent ) { data->info.transferID = agent->mSock; data->info.groupID = (agent->multihdr != NULL ? agent->multihdr->groupID : -1); + data->info.congAlgo = agent->congAlgo; data->type = TRANSFER_REPORT; if ( agent->mInterval != 0.0 ) { struct timeval *interval = &data->intervalTime; @@ -260,6 +261,7 @@ ReportHeader* InitReport( thread_Settings *agent ) { data = &reporthdr->report; data->info.transferID = agent->mSock; data->info.groupID = -1; + data->info.congAlgo = agent->congAlgo; } else { FAIL(1, "Out of Memory!!\n", agent); } @@ -445,6 +447,7 @@ void ReportSettings( thread_Settings *agent ) { data->mMcastIface = agent->mMcastIface; data->info.mFormat = agent->mFormat; data->info.mTTL = agent->mTTL; + data->info.congAlgo = agent->congAlgo; data->connection.peer = agent->peer; data->connection.local = agent->local;