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

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

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

import io.pkts.packet.IPPacket;
import io.pkts.packet.PacketParseException;

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

    /**
     * Layer 3 frames parse their content into {@link IPPacket}.
     * 
     * {@inheritDoc}
     */
    @Override
    IPPacket parse() throws PacketParseException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy