The phy logs are only connected for the duration time, which is client
stop time minus client start time; the linger times do not factor into
this. See this code:
GlobalValue::GetValueByName ("logPhyArrivals", booleanValue);
if (booleanValue.Get () == true)
{
Simulator::Schedule (clientStartTime, &SchedulePhyLogConnect);
Simulator::Schedule (clientStopTime, &SchedulePhyLogDisconnect);
}
- Tom