Class PcapChannelOption
- java.lang.Object
-
- org.apache.plc4x.java.utils.pcap.netty.config.PcapChannelOption
-
public class PcapChannelOption extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static io.netty.channel.ChannelOption<PacketHandler>PACKET_HANDLEROption for providing a PacketHandler, that intercepts the captured packets before passing the data into the channel.static io.netty.channel.ChannelOption<Integer>PORTOption to restrict the captures based on packet port.static io.netty.channel.ChannelOption<Integer>PROTOCOL_IDOption to restrict the captures based on TCP protocol ids.static io.netty.channel.ChannelOption<Boolean>SUPPORT_VLANSOption to restrict the captures based on packet port.
-
Constructor Summary
Constructors Constructor Description PcapChannelOption()
-
-
-
Field Detail
-
SUPPORT_VLANS
public static final io.netty.channel.ChannelOption<Boolean> SUPPORT_VLANS
Option to restrict the captures based on packet port.
-
PORT
public static final io.netty.channel.ChannelOption<Integer> PORT
Option to restrict the captures based on packet port.
-
PROTOCOL_ID
public static final io.netty.channel.ChannelOption<Integer> PROTOCOL_ID
Option to restrict the captures based on TCP protocol ids.
-
PACKET_HANDLER
public static final io.netty.channel.ChannelOption<PacketHandler> PACKET_HANDLER
Option for providing a PacketHandler, that intercepts the captured packets before passing the data into the channel.
-
-