Struct lib_blaster::collector::Collector[][src]

pub struct Collector {
    pub src_ip: Ipv4Addr,
    pub dst_ip: Ipv4Addr,
    pub src_port: u16,
    pub dst_port: u16,
}

The packet-information collector

The meaning of each field:

  • src_ip: source IP address of IP header
  • dst_ip: destination IP address of IP header
  • src_port: source port of TCP header
  • dst_port: destination port of TCP header

Fields

Auto Trait Implementations

impl Send for Collector

impl Sync for Collector