Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
file-rbm.h
1/* file-ruby_marshal.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10
11#ifndef __FILE_RBM_H__
12#define __FILE_RBM_H__
13
14// Dissect one ruby marshal object
15void dissect_rbm_inline(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, unsigned* offset, char** type, char** value);
16
17// Extract a ruby marshal integer
18void get_rbm_integer(tvbuff_t* tvb, unsigned offset, int32_t* value, int* len);
19
20#endif
Definition packet_info.h:43
Definition proto.h:901
Definition tvbuff-int.h:35