package org.noreply.fancydress.type3.routing; /** * The DROP routing as specified in the type III spec. * * DROP packets are dropped by the handling server. Their purpose * is to generate dummy traffic. * * The payload of a DROP packet should be random garbage. */ public class RoutingDROP extends RoutingDestination { /** * Construct a DROP routing. */ public RoutingDROP() { super (RoutingType.DROP); } /** * Return the total length in octets of the routing information. * * @return total length in octets of the routing information */ public int getRoutingInformationLength() { return 0; } /** * Get the routing type of this instance. * * @return routing type */ public byte[] getRoutingInformation() { byte[] result = {}; return result; } }