socketutils.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifdef CONFIG_NET_SOCKETS_POSIX_NAMES
  7. #include <net/socket.h>
  8. #else
  9. #include <posix/netdb.h>
  10. #endif
  11. /**
  12. * @brief Find port in addr:port string.
  13. *
  14. * @param addr_str String of addr[:port] format
  15. *
  16. * @return Pointer to "port" part, or NULL is none.
  17. */
  18. const char *net_addr_str_find_port(const char *addr_str);
  19. /**
  20. * @brief Call getaddrinfo() on addr:port string
  21. *
  22. * Convenience function to split addr[:port] string into address vs port
  23. * components (or use default port number), and call getaddrinfo() on the
  24. * result.
  25. *
  26. * @param addr_str String of addr[:port] format
  27. * @param def_port Default port number to use if addr_str doesn't contain it
  28. * @param hints getaddrinfo() hints
  29. * @param res Result of getaddrinfo() (freeaddrinfo() should be called on it
  30. * as usual.
  31. *
  32. * @return Result of getaddrinfo() call.
  33. */
  34. int net_getaddrinfo_addr_str(const char *addr_str, const char *def_port,
  35. const struct addrinfo *hints,
  36. struct addrinfo **res);