freebsd_getifmaddrs.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. this BSD code is from https://github.com/freebsd/freebsd/blob/386ddae58459341ec567604707805814a2128a57/include/ifaddrs.h
  3. as in older OS X there is no getifmaddrs() and related functions is NetBSD
  4. */
  5. /* $FreeBSD$ */
  6. /*
  7. * Copyright (c) 1995, 1999
  8. * Berkeley Software Design, Inc. All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. *
  28. * BSDI ifaddrs.h,v 2.5 2000/02/23 14:51:59 dab Exp
  29. */
  30. #ifndef _freebsd_getifmaddrs.h_
  31. #define _freebsd_getifmaddrs.h_
  32. /*
  33. * This may have been defined in <net/if.h>. Note that if <net/if.h> is
  34. * to be included it must be included before this header file.
  35. */
  36. #ifndef ifa_broadaddr
  37. #define ifa_broadaddr ifa_dstaddr /* broadcast address interface */
  38. #endif
  39. struct ifmaddrs {
  40. struct ifmaddrs *ifma_next;
  41. struct sockaddr *ifma_name;
  42. struct sockaddr *ifma_addr;
  43. struct sockaddr *ifma_lladdr;
  44. };
  45. #include <sys/cdefs.h>
  46. /*
  47. * Message format for use in obtaining information about multicast addresses
  48. * from the routing socket.
  49. */
  50. struct ifma_msghdr {
  51. int ifmam_msglen; /* to skip over non-understood messages */
  52. int ifmam_version; /* future binary compatibility */
  53. int ifmam_type; /* message type */
  54. int ifmam_addrs; /* like rtm_addrs */
  55. int ifmam_flags; /* value of ifa_flags */
  56. int ifmam_index; /* index for associated ifp */
  57. };
  58. extern int getifaddrs(struct ifaddrs **);
  59. extern void freeifaddrs(struct ifaddrs *);
  60. extern int getifmaddrs(struct ifmaddrs **);
  61. extern void freeifmaddrs(struct ifmaddrs *);
  62. #include "freebsd_getifmaddrs.c"
  63. #endif