blob: 12879190ae0f1ad9793d4f33a9dbb7b1b9382af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* packet-ntp.h
* Definitions for packet disassembly structures and routines
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_NTP_H
#define PACKET_NTP_H
extern const char *tvb_ntp_fmt_ts_sec(tvbuff_t *tvb, gint offset);
extern void ntp_to_nstime(tvbuff_t *tvb, gint offset, nstime_t *nstime);
#endif
|