Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-nats.h
1/* packet-nats.h
2 *
3 * Routines for NATS Client Protocol dissection
4 * https://docs.nats.io/reference/reference-protocols/nats-protocol
5 *
6 * Copyright 2025, Max Dmitrichenko <[email protected]>
7 *
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <[email protected]>
10 * Copyright 1998 Gerald Combs
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 */
14
15#ifndef __PACKET_NATS_H__
16#define __PACKET_NATS_H__
17
19
20typedef struct nats_data
21{
22 const char* subject;
23 const char* reply_to;
24 const char* in_reply_to;
25
26 wmem_map_t* headers_map;
28
29#endif //NATS_NATS_H
Definition wmem_map.c:60
Definition packet-nats.h:21