// $Id: DVUpdatePacket.java,v 1.2 2007/11/07 00:24:09 zahorjan Exp $ import java.util.*; /** * DVUpdatePackets carry routing table update logs, as well * as the usual UpdatePacket information. */ public class DVUpdatePacket extends UpdatePacket { /** * Routing table pdate information. */ public Vector log; DVUpdatePacket(Node from, Vector l) { super(from); log = l; } }