Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 Linaro Limited |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 3 | * Copyright (c) 2019 Intel Corporation |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: Apache-2.0 |
| 6 | */ |
| 7 | |
Flavio Ceolin | 67ca176 | 2018-09-14 10:43:44 -0700 | [diff] [blame] | 8 | #ifndef ZEPHYR_INCLUDE_NET_SNTP_H_ |
| 9 | #define ZEPHYR_INCLUDE_NET_SNTP_H_ |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 10 | |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 11 | #include <net/socket.h> |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 12 | |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 13 | /** SNTP context */ |
| 14 | struct sntp_ctx { |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 15 | struct { |
| 16 | struct pollfd fds[1]; |
| 17 | int nfds; |
| 18 | int fd; |
| 19 | } sock; |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 20 | |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 21 | /** Timestamp when the request was sent from client to server. |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 22 | * This is used to check if the originated timestamp in the server |
| 23 | * reply matches the one in client request. |
| 24 | */ |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 25 | u32_t expected_orig_ts; |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | /** |
| 29 | * @brief Initialize SNTP context |
| 30 | * |
| 31 | * @param ctx Address of sntp context. |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 32 | * @param addr IP address of NTP/SNTP server. |
| 33 | * @param addr_len IP address length of NTP/SNTP server. |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 34 | * |
| 35 | * @return 0 if ok, <0 if error. |
| 36 | */ |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 37 | int sntp_init(struct sntp_ctx *ctx, struct sockaddr *addr, |
| 38 | socklen_t addr_len); |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * @brief Send SNTP request |
| 42 | * |
| 43 | * @param ctx Address of sntp context. |
Ravi kumar Veeramally | f51cebe | 2019-01-18 15:52:55 +0200 | [diff] [blame] | 44 | * @param timeout Timeout of waiting for sntp response (in milliseconds). |
Aurelien Jarno | 4394601 | 2019-01-30 20:56:13 +0100 | [diff] [blame] | 45 | * @param epoch_time Seconds since 1 January 1970. |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 46 | * |
| 47 | * @return 0 if ok, <0 if error. |
| 48 | */ |
Aurelien Jarno | 4394601 | 2019-01-30 20:56:13 +0100 | [diff] [blame] | 49 | int sntp_request(struct sntp_ctx *ctx, u32_t timeout, u64_t *epoch_time); |
Aska Wu | f1e488a | 2017-09-05 18:40:39 +0800 | [diff] [blame] | 50 | |
| 51 | /** |
| 52 | * @brief Release SNTP context |
| 53 | * |
| 54 | * @param ctx Address of sntp context. |
| 55 | */ |
| 56 | void sntp_close(struct sntp_ctx *ctx); |
| 57 | |
| 58 | #endif |