<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">On Wed, Apr 24, 2019 at 5:41 PM Rainer Stratmann <<a href="mailto:rainerstratmann@t-online.de" target="_blank">rainerstratmann@t-online.de</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">struct sockaddr_ll {<br>
     unsigned short sll_family;   <br>
     unsigned short sll_protocol; <br>
     int            sll_ifindex;  <br>
     unsigned short sll_hatype;   <br>
     unsigned char  sll_pkttype;  <br>
     unsigned char  sll_halen;    <br>
     unsigned char  sll_addr[8];  <br>
 };<br>
<br>type<br>
 sockaddr_ll = record<br>
  sll_family : word;<br>
  sll_protocol : word;<br>
  sll_ifindex : integer;<br>
  sll_hatype : word;<br>
  sll_pkttype : byte;<br>
  sll_halen : byte;<br>
  sll_addr: array[ 0 .. 7 ] of byte;<br>
 end;<br>
<br>
Is this correct?</blockquote><div><br></div><div><div>It seems OK, however, if you want portability too, you should:</div><div><br></div><div><font face="monospace, monospace" size="1">uses</font></div><div><font face="monospace, monospace" size="1">  ctypes;</font></div><div><font face="monospace, monospace" size="1"><br></font></div><div><font face="monospace, monospace" size="1">{$PACKRECORDS C} // already commented by Michael<br></font></div><div><font face="monospace, monospace" size="1"><br></font></div><div><font face="monospace, monospace" size="1">type</font></div><div><font face="monospace, monospace" size="1">  sockaddr_ll = record</font></div><div><font face="monospace, monospace" size="1">    sll_family: cushort;</font></div><div><font face="monospace, monospace" size="1">    sll_protocol: cushort;</font></div><div><font face="monospace, monospace" size="1">    sll_ifindex: cint;</font></div><div><font face="monospace, monospace" size="1">    sll_hatype: cushort;</font></div><div><font face="monospace, monospace" size="1">    sll_pkttype: cuchar;</font></div><div><font face="monospace, monospace" size="1">    sll_halen: cuchar;</font></div><div><font face="monospace, monospace" size="1">    sll_addr: array[0..7] of cuchar;</font></div><div><font face="monospace, monospace" size="1"> end;</font></div></div><div> </div></div><div>cheers</div><div><br></div>--<br><div dir="ltr" class="m_-6653235029931917002gmail_signature"><div dir="ltr"><div>Silvio Clécio</div></div></div></div></div></div>