Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
/builds/wireshark/wireshark/frame_tvbuff.h
Go to the documentation of this file.
1
12#ifndef __FRAME_TVBUFF_H__
13#define __FRAME_TVBUFF_H__
14
15#include "cfile.h"
16
17#include <wiretap/wtap.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
23extern tvbuff_t *frame_tvbuff_new(const struct packet_provider_data *prov,
24 const frame_data *fd, const uint8_t *buf);
25
26extern tvbuff_t *frame_tvbuff_new_buffer(const struct packet_provider_data *prov,
27 const frame_data *fd, Buffer *buf);
28
29extern tvbuff_t *file_tvbuff_new(const struct packet_provider_data *prov,
30 const frame_data *fd, const uint8_t *buf);
31
32extern tvbuff_t *file_tvbuff_new_buffer(const struct packet_provider_data *prov,
33 const frame_data *fd, Buffer *buf);
34
35#ifdef __cplusplus
36}
37#endif /* __cplusplus */
38
39#endif /* __FRAME_TVBUFF_H__ */
Definition buffer.h:22
Definition cfile.h:58
Definition tvbuff-int.h:35