addr.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * netlink/addr.h Abstract Address
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_ADDR_H_
  12. #define NETLINK_ADDR_H_
  13. #include <netlink/netlink.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. struct nl_addr;
  18. /* Creation */
  19. extern struct nl_addr * nl_addr_alloc(size_t);
  20. extern struct nl_addr * nl_addr_alloc_attr(struct nlattr *, int);
  21. extern struct nl_addr * nl_addr_build(int, void *, size_t);
  22. extern int nl_addr_parse(const char *, int, struct nl_addr **);
  23. extern struct nl_addr * nl_addr_clone(struct nl_addr *);
  24. /* Destroyage */
  25. extern void nl_addr_destroy(struct nl_addr *);
  26. /* Usage Management */
  27. extern struct nl_addr * nl_addr_get(struct nl_addr *);
  28. extern void nl_addr_put(struct nl_addr *);
  29. extern int nl_addr_shared(struct nl_addr *);
  30. extern int nl_addr_cmp(struct nl_addr *, struct nl_addr *);
  31. extern int nl_addr_cmp_prefix(struct nl_addr *, struct nl_addr *);
  32. extern int nl_addr_iszero(struct nl_addr *);
  33. extern int nl_addr_valid(char *, int);
  34. extern int nl_addr_guess_family(struct nl_addr *);
  35. extern int nl_addr_fill_sockaddr(struct nl_addr *,
  36. struct sockaddr *, socklen_t *);
  37. extern int nl_addr_info(struct nl_addr *, struct addrinfo **);
  38. extern int nl_addr_resolve(struct nl_addr *addr, char *host, size_t hostlen);
  39. /* Access Functions */
  40. extern void nl_addr_set_family(struct nl_addr *, int);
  41. extern int nl_addr_get_family(struct nl_addr *);
  42. extern int nl_addr_set_binary_addr(struct nl_addr *, void *,
  43. size_t);
  44. extern void * nl_addr_get_binary_addr(struct nl_addr *);
  45. extern unsigned int nl_addr_get_len(struct nl_addr *);
  46. extern void nl_addr_set_prefixlen(struct nl_addr *, int);
  47. extern unsigned int nl_addr_get_prefixlen(struct nl_addr *);
  48. /* Address Family Translations */
  49. extern char * nl_af2str(int, char *, size_t);
  50. extern int nl_str2af(const char *);
  51. /* Translations to Strings */
  52. extern char * nl_addr2str(struct nl_addr *, char *, size_t);
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #endif