123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Copyright (c) 2017 Linaro Limited
- * Copyright (c) 2019 Intel Corporation
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_INCLUDE_NET_SNTP_H_
- #define ZEPHYR_INCLUDE_NET_SNTP_H_
- #ifdef CONFIG_NET_SOCKETS_POSIX_NAMES
- #include <net/socket.h>
- #else
- #include <posix/sys/socket.h>
- #include <posix/unistd.h>
- #include <posix/poll.h>
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief Simple Network Time Protocol API
- * @defgroup sntp SNTP
- * @ingroup networking
- * @{
- */
- /** SNTP context */
- struct sntp_ctx {
- struct {
- struct pollfd fds[1];
- int nfds;
- int fd;
- } sock;
- /** Timestamp when the request was sent from client to server.
- * This is used to check if the originated timestamp in the server
- * reply matches the one in client request.
- */
- uint32_t expected_orig_ts;
- };
- /** Time as returned by SNTP API, fractional seconds since 1 Jan 1970 */
- struct sntp_time {
- uint64_t seconds;
- uint32_t fraction;
- };
- /**
- * @brief Initialize SNTP context
- *
- * @param ctx Address of sntp context.
- * @param addr IP address of NTP/SNTP server.
- * @param addr_len IP address length of NTP/SNTP server.
- *
- * @return 0 if ok, <0 if error.
- */
- int sntp_init(struct sntp_ctx *ctx, struct sockaddr *addr,
- socklen_t addr_len);
- /**
- * @brief Perform SNTP query
- *
- * @param ctx Address of sntp context.
- * @param timeout Timeout of waiting for sntp response (in milliseconds).
- * @param time Timestamp including integer and fractional seconds since
- * 1 Jan 1970 (output).
- *
- * @return 0 if ok, <0 if error (-ETIMEDOUT if timeout).
- */
- int sntp_query(struct sntp_ctx *ctx, uint32_t timeout,
- struct sntp_time *time);
- /**
- * @brief Release SNTP context
- *
- * @param ctx Address of sntp context.
- */
- void sntp_close(struct sntp_ctx *ctx);
- /**
- * @brief Convenience function to query SNTP in one-shot fashion
- *
- * Convenience wrapper which calls getaddrinfo(), sntp_init(),
- * sntp_query(), and sntp_close().
- *
- * @param server Address of server in format addr[:port]
- * @param timeout Query timeout
- * @param time Timestamp including integer and fractional seconds since
- * 1 Jan 1970 (output).
- *
- * @return 0 if ok, <0 if error (-ETIMEDOUT if timeout).
- */
- int sntp_simple(const char *server, uint32_t timeout,
- struct sntp_time *time);
- #ifdef __cplusplus
- }
- #endif
- /**
- * @}
- */
- #endif
|