package net.shadowfacts.phycon.api; import net.shadowfacts.phycon.api.packet.Packet; import org.jetbrains.annotations.NotNull; /** * @author shadowfacts */ public interface PacketSink extends NetworkDevice { @NotNull Iterable getDeviceInterfaces(); void handle(@NotNull Packet packet, @NotNull Interface itf); }