udp.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /** @file
  2. @brief UDP utility functions
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_UDP_H_
  10. #define ZEPHYR_INCLUDE_NET_UDP_H_
  11. #include <zephyr/types.h>
  12. #include <net/net_core.h>
  13. #include <net/net_ip.h>
  14. #include <net/net_pkt.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* These APIs are mostly meant for Zephyr internal use so do not generate
  19. * documentation for them.
  20. */
  21. /** @cond INTERNAL_HIDDEN */
  22. /**
  23. * @brief UDP library
  24. * @defgroup udp UDP Library
  25. * @ingroup networking
  26. * @{
  27. */
  28. /**
  29. * @brief Get UDP packet header data from net_pkt.
  30. *
  31. * @details The values in the returned header are in network byte order.
  32. * Note that you must access the UDP header values by the returned pointer,
  33. * the hdr parameter is just a placeholder for the header data and it might
  34. * not contain anything if the header fits properly in the first fragment of
  35. * the network packet.
  36. *
  37. * @param pkt Network packet
  38. * @param hdr Where to place the header if it does not fit in first fragment
  39. * of the network packet. This might not be populated if UDP header fits in
  40. * net_buf fragment.
  41. *
  42. * @return Return pointer to header or NULL if something went wrong.
  43. * Always use the returned pointer to access the UDP header.
  44. */
  45. #if defined(CONFIG_NET_UDP)
  46. struct net_udp_hdr *net_udp_get_hdr(struct net_pkt *pkt,
  47. struct net_udp_hdr *hdr);
  48. #else
  49. static inline struct net_udp_hdr *net_udp_get_hdr(struct net_pkt *pkt,
  50. struct net_udp_hdr *hdr)
  51. {
  52. return NULL;
  53. }
  54. #endif /* CONFIG_NET_UDP */
  55. /**
  56. * @brief Set UDP packet header data in net_pkt.
  57. *
  58. * @details The values in the header must be in network byte order.
  59. * This function is normally called after a call to net_udp_get_hdr().
  60. * The hdr parameter value should be the same that is returned by function
  61. * net_udp_get_hdr() call. Note that if the UDP header fits in first net_pkt
  62. * fragment, then this function will not do anything as your hdr parameter
  63. * was pointing directly to net_pkt.
  64. *
  65. * @param pkt Network packet
  66. * @param hdr Header data pointer that was returned by net_udp_get_hdr().
  67. *
  68. * @return Return pointer to header or NULL if something went wrong.
  69. */
  70. #if defined(CONFIG_NET_UDP)
  71. struct net_udp_hdr *net_udp_set_hdr(struct net_pkt *pkt,
  72. struct net_udp_hdr *hdr);
  73. #else
  74. static inline struct net_udp_hdr *net_udp_set_hdr(struct net_pkt *pkt,
  75. struct net_udp_hdr *hdr)
  76. {
  77. return NULL;
  78. }
  79. #endif /* CONFIG_NET_UDP */
  80. /**
  81. * @}
  82. */
  83. /** @endcond */
  84. #ifdef __cplusplus
  85. }
  86. #endif
  87. #endif /* ZEPHYR_INCLUDE_NET_UDP_H_ */