Package org.pcap4j.core.NativeMappings

Examples of org.pcap4j.core.NativeMappings.sockaddr_dl


        }
        else if (
             (Platform.isMac() || Platform.isFreeBSD() || Platform.isOpenBSD()) || Platform.iskFreeBSD()
          && sa_family == Inets.AF_LINK
        ) {
          sockaddr_dl sdl = new sockaddr_dl(pcapAddr.addr.getPointer());
          byte[] addr = sdl.getAddress();
          if (addr.length == 6) {
            linkLayerAddresses.add(MacAddress.getByAddress(addr));
          }
          else if (addr.length == 0) {
            continue;
View Full Code Here

TOP

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

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.