Class Inets

java.lang.Object
org.pcap4j.core.Inets

public final class Inets extends Object
Since:
pcap4j 0.9.1
  • Field Details

    • AF_UNSPEC

      public static final short AF_UNSPEC
      Unspecified address family. This value is defined in <sys/socket.h> as 0.
      See Also:
    • AF_INET

      public static final short AF_INET
      Address family for IPv4. This value needs to be the same as AF_INET defined in <sys/socket.h>. This value may vary depending on OS. This value is set to 2 by default and can be changed by setting the property org.pcap4j.af.inet (system property or pcap4j-core.jar/org/pcap4j/pcap4j.properties).
      See Also:
    • AF_INET6

      public static final short AF_INET6
      Address family for IPv6. This value needs to be the same as AF_INET6 defined in <sys/socket.h>. This value varies depending on OS. By default, this value is set to 30 on Mac OS X, 28 on FreeBSD, 10 on Linux, and 23 on the others. This value can be changed by setting the property org.pcap4j.af.inet6 (system property or pcap4j-core.jar/org/pcap4j/pcap4j.properties).
      See Also:
    • AF_PACKET

      public static final short AF_PACKET
      Address family for low level packet interface. This value needs to be the same as AF_PACKET defined in <sys/socket.h>. This value may vary depending on OS. This value is set to 17 by default and can be changed by setting the property org.pcap4j.af.packet (system property or pcap4j-core.jar/org/pcap4j/pcap4j.properties).
      See Also:
  • Constructor Details

    • Inets

      private Inets()
  • Method Details