io.pkts.packet.impl.ApplicationPacket Maven / Gradle / Ivy
/**
*
*/
package io.pkts.packet.impl;
import io.pkts.packet.Packet;
/**
* Represents a packet from the Application Layer (layer 7) in the OSI model.
*
* Since layer 5 and 6 hasn't been added to this implementation yet, this packet
* will extend layer 4 (transport layer) directly.
*
* @author [email protected]
*/
public interface ApplicationPacket extends Packet {
}