sntp.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) 2017 Linaro Limited
  3. * Copyright (c) 2019 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_NET_SNTP_H_
  8. #define ZEPHYR_INCLUDE_NET_SNTP_H_
  9. #ifdef CONFIG_NET_SOCKETS_POSIX_NAMES
  10. #include <net/socket.h>
  11. #else
  12. #include <posix/sys/socket.h>
  13. #include <posix/unistd.h>
  14. #include <posix/poll.h>
  15. #endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20. * @brief Simple Network Time Protocol API
  21. * @defgroup sntp SNTP
  22. * @ingroup networking
  23. * @{
  24. */
  25. /** SNTP context */
  26. struct sntp_ctx {
  27. struct {
  28. struct pollfd fds[1];
  29. int nfds;
  30. int fd;
  31. } sock;
  32. /** Timestamp when the request was sent from client to server.
  33. * This is used to check if the originated timestamp in the server
  34. * reply matches the one in client request.
  35. */
  36. uint32_t expected_orig_ts;
  37. };
  38. /** Time as returned by SNTP API, fractional seconds since 1 Jan 1970 */
  39. struct sntp_time {
  40. uint64_t seconds;
  41. uint32_t fraction;
  42. };
  43. /**
  44. * @brief Initialize SNTP context
  45. *
  46. * @param ctx Address of sntp context.
  47. * @param addr IP address of NTP/SNTP server.
  48. * @param addr_len IP address length of NTP/SNTP server.
  49. *
  50. * @return 0 if ok, <0 if error.
  51. */
  52. int sntp_init(struct sntp_ctx *ctx, struct sockaddr *addr,
  53. socklen_t addr_len);
  54. /**
  55. * @brief Perform SNTP query
  56. *
  57. * @param ctx Address of sntp context.
  58. * @param timeout Timeout of waiting for sntp response (in milliseconds).
  59. * @param time Timestamp including integer and fractional seconds since
  60. * 1 Jan 1970 (output).
  61. *
  62. * @return 0 if ok, <0 if error (-ETIMEDOUT if timeout).
  63. */
  64. int sntp_query(struct sntp_ctx *ctx, uint32_t timeout,
  65. struct sntp_time *time);
  66. /**
  67. * @brief Release SNTP context
  68. *
  69. * @param ctx Address of sntp context.
  70. */
  71. void sntp_close(struct sntp_ctx *ctx);
  72. /**
  73. * @brief Convenience function to query SNTP in one-shot fashion
  74. *
  75. * Convenience wrapper which calls getaddrinfo(), sntp_init(),
  76. * sntp_query(), and sntp_close().
  77. *
  78. * @param server Address of server in format addr[:port]
  79. * @param timeout Query timeout
  80. * @param time Timestamp including integer and fractional seconds since
  81. * 1 Jan 1970 (output).
  82. *
  83. * @return 0 if ok, <0 if error (-ETIMEDOUT if timeout).
  84. */
  85. int sntp_simple(const char *server, uint32_t timeout,
  86. struct sntp_time *time);
  87. #ifdef __cplusplus
  88. }
  89. #endif
  90. /**
  91. * @}
  92. */
  93. #endif