return;
//System.out.println("Got RtcpiSubcomponentReportPacket: " + packet);
LinkedList subcomponents = packet.getSubcomponentReportInfo();
SubcomponentReportInfo info = null;
long subID=0;
int active=0;
byte[] name=null;
for(ListIterator iter=subcomponents.listIterator();iter.hasNext();) {
info = (SubcomponentReportInfo) iter.next();
subID = info.getSubcomponentID();
active = info.getActive();
name = info.getApplicationLevelName();
//System.out.println("Active is: " + active);
if (name==null && applicationLevelNames) {
System.err.println("Rtpi: received SUBREP packet without application level names,");