439440441442443444445446447448449
while ((packet = extractStartupPacket()) != null) { Mailbox mailbox = getMailbox(packet.getTo()); if (mailbox != null) packet.dispatch(mailbox, this); else { log.warning(this + " failed to find mailbox " + packet.getTo() + " for " + packet); } }