Exemple #1
0
 private void removeUnused() {
   Conversation[] cons = getArray();
   for (int i = 0; i < cons.length; i++) {
     Conversation c = cons[i];
     if (!c.isUsed()) {
       removeConversation(c.getRmt_ip(), c.getLcl_port(), c.getRmt_port());
     }
   }
 }