This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ioctl(sock, SIOCGIFHWADDR, &ifr) fails with 1.7


Am 15.06.2009, 11:22 Uhr, schrieb FrÃdÃric Bron <frederic.bron@m4x.org>:

To fix your application, call either

Âstruct ifconf ifc;
Âifc.ifc_len = sizeof (struct ifreq) * 32;
Âifc.ifc_buf = malloc (ifc.ifc_len);
Âif (ioctl (fd, SIOCGIFCONF, &ifc))
 Â/* Resize ifc_buf and retry */
Âelse
 Â{
  Âstruct ifreq *ifr = ifc.ifc_req;
  Âstruct ifreq ifr2;
  Âfor (int i = 0; i < ifc.ifc_len; i += sizeof (struct ifreq), ++ifr)
   Âif (!ioctl (fd, SIOCGIFADDR, &ifr2))
    Â/* Print result for that interface */
 Â}

Thanks, this works half! No need of ifr2, ifr is enough. I saw the name change: 1.5 gives eth0, eth1, eth2, lo and 1.7 gives {821C54BE-...}...

Careful - this isn't portable to newer BSDs, as there ifc_len may exceed sizeof(struct ifreq).


getifaddrs() is probably the more portable solution here.

--
Matthias Andree

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]