All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.pkts.frame.Layer4Frame Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
package io.pkts.frame;

import io.pkts.packet.PacketParseException;
import io.pkts.packet.TransportPacket;

/**
 * A frame representing the Transport Layer in the OSI model
 * 
 * @author [email protected]
 */
public interface Layer4Frame extends Frame {

    /**
     * Layer 4 frames parse their content into transport packets
     * 
     * {@inheritDoc}
     */
    @Override
    TransportPacket parse() throws PacketParseException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy