Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства является частью версии 5.0 Инструментов XCode

Получить эти инструменты:

Если Вы выполняете версию Инструментов XCode кроме 5,0, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.




GETIFMADDRS(3)           BSD Library Functions Manual           GETIFMADDRS(3)

NAME
     getifmaddrs -- get multicast group memberships

SYNOPSIS
     #include <sys/types.h>
     #include <sys/socket.h>
     #include <ifaddrs.h>

     int
     getifmaddrs(struct ifmaddrs **ifmap);

     void
     freeifmaddrs(struct ifmaddrs *ifmp);

DESCRIPTION
     The getifmaddrs() function stores a reference to a linked list of the multicast memberships on the
     local machine in the memory referenced by ifmap.  The list consists of ifmaddrs structures, as defined
     in the include file <ifaddrs.h>.  The ifmaddrs structure contains at least the following entries:

         struct ifmaddrs   *ifma_next;     /* Pointer to next struct */
         struct sockaddr   *ifma_name;     /* Interface name (AF_LINK) */
         struct sockaddr   *ifma_addr;     /* Multicast address */
         struct sockaddr   *ifma_lladdr;   /* Link-layer translation, if any */

     The ifma_next field contains a pointer to the next structure on the list.  This field is NULL in last
     structure on the list.

     The ifma_name field references an AF_LINK address structure, containing the name of the interface where
     the membership exists.

     The ifma_addr references the address that this membership is for.

     The ifma_lladdr field references a link-layer translation for the protocol-level address in ifma_addr,
     if one is set, otherwise it is NULL.

     The data returned by getifmaddrs() is dynamically allocated and should be freed using freeifmaddrs()
     when no longer needed.

RETURN VALUES
     The getifmaddrs() function returns the value 0 if successful; otherwise the value -1 is returned and
     the global variable errno is set to indicate the error.

ERRORS
     The getifmaddrs() may fail and set errno for any of the errors specified for the library routines
     malloc(3) or sysctl(3).

SEE ALSO
     sysctl(3), networking(4), ifconfig(8)

HISTORY
     The getifmaddrs() function first appeared in FreeBSD 5.2.

BUGS
     If both <net/if.h> and <ifaddrs.h> are being included, <net/if.h> must be included before <ifaddrs.h>.

BSD                            November 14, 2003                           BSD

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации со ссылками на отзыв ниже.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API через Генератор отчетов Ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.