/* * Author: Wenbing Zhao * Last Modified: 9/18/2006 * For EEC484/584 Project 1 */ // This class describes the hypothetical network layer data unit public class Packet { public int length; public byte[] payload = new byte[Frame.MAX_FRAME_PAYLOAD]; }