Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
frame_data_sequence.h
Go to the documentation of this file.
1
11#ifndef __FRAME_DATA_SEQUENCE_H__
12#define __FRAME_DATA_SEQUENCE_H__
13
14#include <epan/frame_data.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
21
22WS_DLL_PUBLIC frame_data_sequence *new_frame_data_sequence(void);
23
24WS_DLL_PUBLIC frame_data *frame_data_sequence_add(frame_data_sequence *fds,
25 frame_data *fdata);
26
27/*
28 * Find the frame_data for the specified frame number.
29 */
30WS_DLL_PUBLIC frame_data *frame_data_sequence_find(frame_data_sequence *fds,
31 uint32_t num);
32
33/*
34 * Free a frame_data_sequence and all the frame_data structures in it.
35 */
36WS_DLL_PUBLIC void free_frame_data_sequence(frame_data_sequence *fds);
37
38WS_DLL_PUBLIC void find_and_mark_frame_depended_upon(void *key, void *value, void *user_data);
39
40
41#ifdef __cplusplus
42}
43#endif /* __cplusplus */
44
45#endif /* __FRAME_DATA_SEQUENCE_H__ */
Definition frame_data_sequence.c:32