Wireshark 4.5.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#ifdef __cplusplus
15extern "C" {
16#endif /* __cplusplus */
17
19
20WS_DLL_PUBLIC frame_data_sequence *new_frame_data_sequence(void);
21
22WS_DLL_PUBLIC frame_data *frame_data_sequence_add(frame_data_sequence *fds,
23 frame_data *fdata);
24
25/*
26 * Find the frame_data for the specified frame number.
27 */
28WS_DLL_PUBLIC frame_data *frame_data_sequence_find(frame_data_sequence *fds,
29 uint32_t num);
30
31/*
32 * Free a frame_data_sequence and all the frame_data structures in it.
33 */
34WS_DLL_PUBLIC void free_frame_data_sequence(frame_data_sequence *fds);
35
36WS_DLL_PUBLIC void find_and_mark_frame_depended_upon(void *key, void *value, void *user_data);
37
38
39#ifdef __cplusplus
40}
41#endif /* __cplusplus */
42
43#endif /* __FRAME_DATA_SEQUENCE_H__ */
Definition frame_data_sequence.c:32