Package org.pcap4j.core.NativeMappings

Examples of org.pcap4j.core.NativeMappings.win_pcap_stat


  private final long numPacketsDroppedByIf;
  private final long numPacketsCaptured;

  PcapStat(pcap_stat stat) {
    if (stat instanceof win_pcap_stat) {
      win_pcap_stat win_stat = (win_pcap_stat)stat;
      this.numPacketsReceived = win_stat.ps_recv & 0xFFFFFFFFL;
      this.numPacketsDropped = win_stat.ps_drop & 0xFFFFFFFFL;
      this.numPacketsDroppedByIf = win_stat.ps_ifdrop & 0xFFFFFFFFL;
      this.numPacketsCaptured = win_stat.bs_capt & 0xFFFFFFFFL;
    }
View Full Code Here

TOP

Related Classes of org.pcap4j.core.NativeMappings.win_pcap_stat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.