Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / libc / src / nif_etherh.inc
Size: Mime:

type
   Pether_arp = ^ether_arp;
   ether_arp = record
        ea_hdr : arphdr;
        arp_sha : array[0..(ETH_ALEN)-1] of u_int8_t;
        arp_spa : array[0..3] of u_int8_t;
        arp_tha : array[0..(ETH_ALEN)-1] of u_int8_t;
        arp_tpa : array[0..3] of u_int8_t;
     end;

{ ---------------------------------------------------------------------
    Borland compatibility types
  ---------------------------------------------------------------------}

type
  TEthernetAddress = packed array[0..ETH_ALEN-1] of u_char;
  PEthernetAddress = ^TEthernetAddress;

procedure ETHER_MAP_IP_MULTICAST(const ipaddr: in_addr; enaddr: PEthernetAddress);