summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/routing/RoutingDestination.java
blob: 38a03426f93bcfd1f7e329633b7c4b9c6ca44507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* $Id$ */
package org.noreply.fancydress.type3.routing;

/**
 * Base class for all Routings that are final destinations.
 *
 * Routings of this type usually mean that the message leaves the Type III
 * network at the server processing them (for instance to be delivered via
 * SMTP).  In case of a DROP type it means that the packet is dropped at this
 * node.
 */
public abstract class RoutingDestination extends Routing {
	/**
	 * The size of decoding handles for payloads
	 */
	public static final int DECODINGHANDLE_LEN = 20;

	/**
	 * Default constructor.
	 *
	 *  @param type The routing type as integer.
	 */
	protected RoutingDestination(int type) {
		super (type);
	}
}