blob: 2718194774ecbd5f92a14e20de77c9c046701f5f [file] [log] [blame]
Aska Wuf1e488a2017-09-05 18:40:39 +08001/*
2 * Copyright (c) 2017 Linaro Limited
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +02003 * Copyright (c) 2019 Intel Corporation
Aska Wuf1e488a2017-09-05 18:40:39 +08004 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
Flavio Ceolin67ca1762018-09-14 10:43:44 -07008#ifndef ZEPHYR_INCLUDE_NET_SNTP_H_
9#define ZEPHYR_INCLUDE_NET_SNTP_H_
Aska Wuf1e488a2017-09-05 18:40:39 +080010
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020011#include <net/socket.h>
Aska Wuf1e488a2017-09-05 18:40:39 +080012
Aska Wuf1e488a2017-09-05 18:40:39 +080013/** SNTP context */
14struct sntp_ctx {
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020015 struct {
16 struct pollfd fds[1];
17 int nfds;
18 int fd;
19 } sock;
Aska Wuf1e488a2017-09-05 18:40:39 +080020
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020021 /** Timestamp when the request was sent from client to server.
Aska Wuf1e488a2017-09-05 18:40:39 +080022 * This is used to check if the originated timestamp in the server
23 * reply matches the one in client request.
24 */
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020025 u32_t expected_orig_ts;
Aska Wuf1e488a2017-09-05 18:40:39 +080026};
27
28/**
29 * @brief Initialize SNTP context
30 *
31 * @param ctx Address of sntp context.
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020032 * @param addr IP address of NTP/SNTP server.
33 * @param addr_len IP address length of NTP/SNTP server.
Aska Wuf1e488a2017-09-05 18:40:39 +080034 *
35 * @return 0 if ok, <0 if error.
36 */
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020037int sntp_init(struct sntp_ctx *ctx, struct sockaddr *addr,
38 socklen_t addr_len);
Aska Wuf1e488a2017-09-05 18:40:39 +080039
40/**
41 * @brief Send SNTP request
42 *
43 * @param ctx Address of sntp context.
Ravi kumar Veeramallyf51cebe2019-01-18 15:52:55 +020044 * @param timeout Timeout of waiting for sntp response (in milliseconds).
Aurelien Jarno43946012019-01-30 20:56:13 +010045 * @param epoch_time Seconds since 1 January 1970.
Aska Wuf1e488a2017-09-05 18:40:39 +080046 *
47 * @return 0 if ok, <0 if error.
48 */
Aurelien Jarno43946012019-01-30 20:56:13 +010049int sntp_request(struct sntp_ctx *ctx, u32_t timeout, u64_t *epoch_time);
Aska Wuf1e488a2017-09-05 18:40:39 +080050
51/**
52 * @brief Release SNTP context
53 *
54 * @param ctx Address of sntp context.
55 */
56void sntp_close(struct sntp_ctx *ctx);
57
58#endif