blob: d80ed01ec9eb0b080f4ebc972949c744041c23f0 (
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, int offset);
extern void ntp_to_nstime(tvbuff_t *tvb, int offset, nstime_t *nstime);
#endif
|