Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-cbor.h
1/* packet-cbor.h
2 *
3 * Routines for Concise Binary Object Representation (CBOR) (STD 94)
4 * References:
5 * RFC 8949: https://tools.ietf.org/html/rfc8949
6 * RFC 8742: https://tools.ietf.org/html/rfc8742
7 *
8 * Copyright 2025, Brian Sipos <[email protected]>
9 *
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <[email protected]>
12 * Copyright 1998 Gerald Combs
13 *
14 * SPDX-License-Identifier: GPL-2.0-or-later
15 */
16
17#ifndef PACKET_CBOR_H
18#define PACKET_CBOR_H
19
20#include <epan/packet_info.h>
21#include <epan/proto.h>
22#include <epan/tvbuff.h>
23
36bool cbor_heuristic(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data);
37
38#endif /* PACKET_CBOR_H */
Definition packet_info.h:43
Definition proto.h:907
Definition tvbuff-int.h:35